diff options
author | Brad King <brad.king@kitware.com> | 2024-07-04 14:07:25 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-07-04 14:07:34 (GMT) |
commit | 3282ad4aee7b945deb6f2a0bd077b348b1f1ce55 (patch) | |
tree | 2d4d66e2851097d19696763abcdecab95fb0ae4f | |
parent | 339f1444e0c8f97721eeed5d19e37774cbbe60d7 (diff) | |
parent | 973bb02b14787c959e98c9468bbae37953722afe (diff) | |
download | CMake-3282ad4aee7b945deb6f2a0bd077b348b1f1ce55.zip CMake-3282ad4aee7b945deb6f2a0bd077b348b1f1ce55.tar.gz CMake-3282ad4aee7b945deb6f2a0bd077b348b1f1ce55.tar.bz2 |
Merge topic 'cmake-help-workflow'
973bb02b14 cmake: Print --workflow option in --help output
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9637
-rw-r--r-- | Source/cmakemain.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 8462734..e142fc9 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -68,9 +68,10 @@ const cmDocumentationEntry cmDocumentationUsageNote = { "Run 'cmake --help' for more information." }; -const cmDocumentationEntry cmDocumentationOptions[31] = { +const cmDocumentationEntry cmDocumentationOptions[32] = { { "--preset <preset>,--preset=<preset>", "Specify a configure preset." }, { "--list-presets[=<type>]", "List available presets." }, + { "--workflow [<options>]", "Run a workflow preset." }, { "-E", "CMake command mode." }, { "-L[A][H]", "List non-advanced cached variables." }, { "--fresh", |