diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2019-04-27 07:31:03 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2019-04-28 12:45:44 (GMT) |
commit | 6cc93b370ef59208b9b468ebc9d84cc02e3cbd85 (patch) | |
tree | d3dfd8c1ae2826e369ce504ffb483388cb6ddeaf /Source/cmakemain.cxx | |
parent | 377d1b7896e07a171bcfe8da6d9dcda6545052c2 (diff) | |
download | CMake-6cc93b370ef59208b9b468ebc9d84cc02e3cbd85.zip CMake-6cc93b370ef59208b9b468ebc9d84cc02e3cbd85.tar.gz CMake-6cc93b370ef59208b9b468ebc9d84cc02e3cbd85.tar.bz2 |
message(): Add support for log levels
Relates: #18943
Co-Authored-By: Craig Scott <craig.scott@crascit.com>
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index d70c9d9..5631d10 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -95,6 +95,8 @@ static const char* cmDocumentationOptions[][2] = { "Generate graphviz of dependencies, see " "CMakeGraphVizOptions.cmake for more." }, { "--system-information [file]", "Dump information about this system." }, + { "--loglevel=<error|warn|notice|status|verbose|debug|trace>", + "Set the verbosity of messages from CMake files." }, { "--debug-trycompile", "Do not delete the try_compile build tree. Only " "useful on one try_compile at a time." }, |