diff options
author | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-12 17:04:49 (GMT) |
---|---|---|
committer | Wouter Klouwen <wouter.klouwen@youview.com> | 2018-10-19 14:32:51 (GMT) |
commit | b6f6cac378f4107d64b32981ba311b311157ce04 (patch) | |
tree | 5f12e949ff994c57a7fd1241fa13113466495ea2 /Auxiliary | |
parent | 804e11a087fdb44b8c1202521c3ba3bed0bed821 (diff) | |
download | CMake-b6f6cac378f4107d64b32981ba311b311157ce04.zip CMake-b6f6cac378f4107d64b32981ba311b311157ce04.tar.gz CMake-b6f6cac378f4107d64b32981ba311b311157ce04.tar.bz2 |
ExternalProject: add LOG_DIR option that allows overriding of log location
In some situations it can be helpful to separate out the location of the
log files from the location of the stamp files. For instance if you have
a continuous integration that exposes the location where log files are
stored.
This commit adds an option that allows a user to override the default
behaviour of putting the log files in STAMP_DIR called LOG_DIR. The
previous behaviour of putting the log files into the STAMP_DIR applies
if LOG_DIR is not specified.
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 076b47f..64011b6 100644 --- a/Auxiliary/vim/syntax/cmake.vim +++ b/Auxiliary/vim/syntax/cmake.vim @@ -873,6 +873,7 @@ syn keyword cmakeKWExternalProject contained \ LOG_ \ LOG_BUILD \ LOG_CONFIGURE + \ LOG_DIR \ LOG_DOWNLOAD \ LOG_INSTALL \ LOG_TEST |