diff options
author | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-12 18:33:36 +0100 |
---|---|---|
committer | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-19 15:32:51 +0100 |
commit | 7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8 (patch) | |
tree | 0598d805dea707dd90166abb58dac20605b58ee0 /Auxiliary | |
parent | b6f6cac378f4107d64b32981ba311b311157ce04 (diff) | |
download | cmake-7ddc9e353b097a9f6b0910d7d4875bd9c68c64d8.tar.gz |
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 'Auxiliary')
-rw-r--r-- | Auxiliary/vim/syntax/cmake.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Auxiliary/vim/syntax/cmake.vim b/Auxiliary/vim/syntax/cmake.vim index 64011b6e52..25384e45be 100644 --- a/Auxiliary/vim/syntax/cmake.vim +++ b/Auxiliary/vim/syntax/cmake.vim @@ -876,6 +876,7 @@ syn keyword cmakeKWExternalProject contained \ LOG_DIR \ LOG_DOWNLOAD \ LOG_INSTALL + \ LOG_MERGED_STDOUTERR \ LOG_TEST \ LOG_UPDATE \ MAKE_EXE |