diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2019-10-12 02:37:15 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2019-10-12 07:21:36 (GMT) |
commit | 7cf79f44195a86a907dba770f1f7a361d00e77c2 (patch) | |
tree | a8c9b970b55979ec5eecce59aadab91036941235 /Help/manual/cmake.1.rst | |
parent | 5bf85e25178f5d9f19d2f30cf66f088c21e1114a (diff) | |
download | CMake-7cf79f44195a86a907dba770f1f7a361d00e77c2.zip CMake-7cf79f44195a86a907dba770f1f7a361d00e77c2.tar.gz CMake-7cf79f44195a86a907dba770f1f7a361d00e77c2.tar.bz2 |
message: Support logging a context with each message
Diffstat (limited to 'Help/manual/cmake.1.rst')
-rw-r--r-- | Help/manual/cmake.1.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 08b7534..71110d1 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -214,6 +214,16 @@ Options For backward compatibility reasons, ``--loglevel`` is also accepted as a synonym for this option. +``--log-context`` + Enable the :command:`message` command outputting context attached to each + message. + + This option turns on showing context for the current CMake run only. + To make showing the context persistent for all subsequent CMake runs, set + :variable:`CMAKE_MESSAGE_CONTEXT_SHOW` as a cache variable instead. + When this command line option is given, :variable:`CMAKE_MESSAGE_CONTEXT_SHOW` + is ignored. + ``--debug-trycompile`` Do not delete the :command:`try_compile` build tree. Only useful on one :command:`try_compile` at a time. |