diff options
author | Brad King <brad.king@kitware.com> | 2006-10-16 15:32:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-16 15:32:28 (GMT) |
commit | e593fbf6eee74e33f721742ac0d632a3b7f72084 (patch) | |
tree | e2c76e08de8f35796a37f40b0c8077eb664447a7 /Source/cmExecuteProcessCommand.h | |
parent | 641a0ad878e97485dbc02b9344aa72edd2a4f24a (diff) | |
download | CMake-e593fbf6eee74e33f721742ac0d632a3b7f72084.zip CMake-e593fbf6eee74e33f721742ac0d632a3b7f72084.tar.gz CMake-e593fbf6eee74e33f721742ac0d632a3b7f72084.tar.bz2 |
ENH: Added OUTPUT_STRIP_TRAILING_WHITESPACE and ERROR_STRIP_TRAILING_WHITESPACE options to EXECUTE_PROCESS command. These allow it to behave more like the old EXEC_PROGRAM command that it is supposed to replace.
Diffstat (limited to 'Source/cmExecuteProcessCommand.h')
-rw-r--r-- | Source/cmExecuteProcessCommand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmExecuteProcessCommand.h b/Source/cmExecuteProcessCommand.h index f69c414..a9286a7 100644 --- a/Source/cmExecuteProcessCommand.h +++ b/Source/cmExecuteProcessCommand.h @@ -78,7 +78,9 @@ public: " [OUTPUT_FILE <file>]\n" " [ERROR_FILE <file>]\n" " [OUTPUT_QUIET]\n" - " [ERROR_QUIET])\n" + " [ERROR_QUIET]\n" + " [OUTPUT_STRIP_TRAILING_WHITESPACE]\n" + " [ERROR_STRIP_TRAILING_WHITESPACE])\n" "Runs the given sequence of one or more commands with the standard " "output of each process piped to the standard input of the next. " "A single standard error pipe is used for all processes. " |