diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-08-04 15:02:46 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2022-08-04 15:34:45 (GMT) |
commit | f4563f05dbf183e0eca6a67c7dfe71c5219a057f (patch) | |
tree | 3bc87e17e6fef340c20ae5e8a7591875bc3b1496 /Source/cmakemain.cxx | |
parent | 04843d743e08beeb257f6ce781633b2a9647ab07 (diff) | |
download | CMake-f4563f05dbf183e0eca6a67c7dfe71c5219a057f.zip CMake-f4563f05dbf183e0eca6a67c7dfe71c5219a057f.tar.gz CMake-f4563f05dbf183e0eca6a67c7dfe71c5219a057f.tar.bz2 |
Help: Value for `--graphviz=` option actually is mandatory
Before it was `[file]` that AFAIK means optional.
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index f931e9d..c83508b 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -82,7 +82,7 @@ const char* cmDocumentationOptions[][2] = { { "-N", "View mode only." }, { "-P <file>", "Process script mode." }, { "--find-package", "Legacy pkg-config like mode. Do not use." }, - { "--graphviz=[file]", + { "--graphviz=<file>", "Generate graphviz of dependencies, see " "CMakeGraphVizOptions.cmake for more." }, { "--system-information [file]", "Dump information about this system." }, |