summaryrefslogtreecommitdiffstats
path: root/Help/command
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-04-30 14:04:42 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-04-30 14:05:09 (GMT)
commit60b28de5c8c364d26824dbe2c2666ea47e8870a2 (patch)
tree1e62f6fb4c714f71f1299183f1ea454cfd2c0aae /Help/command
parentb74061ba386a46d273bea37f377998a4e1936a65 (diff)
parent044dcf9f8d2bfb10825627f7e18456a1679d5ab6 (diff)
downloadCMake-60b28de5c8c364d26824dbe2c2666ea47e8870a2.zip
CMake-60b28de5c8c364d26824dbe2c2666ea47e8870a2.tar.gz
CMake-60b28de5c8c364d26824dbe2c2666ea47e8870a2.tar.bz2
Merge topic 'add-execute_process-command-echo'
044dcf9f8d execute_process: Add option to echo command lines d350fb6889 execute_process: Manage KWSys Process lifetime with unique_ptr Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3165
Diffstat (limited to 'Help/command')
-rw-r--r--Help/command/execute_process.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/command/execute_process.rst b/Help/command/execute_process.rst
index 2d71352..e6ad037 100644
--- a/Help/command/execute_process.rst
+++ b/Help/command/execute_process.rst
@@ -18,6 +18,7 @@ Execute one or more child processes.
[ERROR_FILE <file>]
[OUTPUT_QUIET]
[ERROR_QUIET]
+ [COMMAND_ECHO <where>]
[OUTPUT_STRIP_TRAILING_WHITESPACE]
[ERROR_STRIP_TRAILING_WHITESPACE]
[ENCODING <name>])
@@ -77,6 +78,10 @@ Options:
``OUTPUT_QUIET``, ``ERROR_QUIET``
The standard output or standard error results will be quietly ignored.
+``COMMAND_ECHO <where>``
+ The command being run will be echo'ed to ``<where>`` with ``<where>``
+ being set to ``STDERR``|``STDOUT``|``NONE``.
+
``ENCODING <name>``
On Windows, the encoding that is used to decode output from the process.
Ignored on other platforms.