diff options
author | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-12 17:33:36 (GMT) |
---|---|---|
committer | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-19 14:32:51 (GMT) |
commit | 7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8 (patch) | |
tree | 0598d805dea707dd90166abb58dac20605b58ee0 /Help | |
parent | b6f6cac378f4107d64b32981ba311b311157ce04 (diff) | |
download | CMake-7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8.zip CMake-7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8.tar.gz CMake-7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8.tar.bz2 |
ExternalProject: option LOG_MERGED_STDOUTERR to combine stdout and stderr
In some circumstances the user of ExternalProject may not desire the
split log files for stdout and stderr. In particular with a project has
many errors it can be difficult to correlate the output error with the
command that it resulted from.
This commit adds the LOG_MERGED_STDOUTERR option that when enabled
outputs into a unified <name>-<step>.log for each step. If disabled it
will default to the previous behaviour of <name>-<step>-out.log and
<name>-<step>-err.log.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/dev/ExternalProject-log-options.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/release/dev/ExternalProject-log-options.rst b/Help/release/dev/ExternalProject-log-options.rst new file mode 100644 index 0000000..2fc4c4f --- /dev/null +++ b/Help/release/dev/ExternalProject-log-options.rst @@ -0,0 +1,5 @@ +ExternalProject-log-options +--------------------------- + +* The :module:`ExternalProject` module :command:`ExternalProject_Add` command + gained ``LOG_DIR`` and ``LOG_MERGED_STDOUTERR`` options to control logging. |