diff options
author | Brad King <brad.king@kitware.com> | 2021-02-23 13:50:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-23 14:11:44 (GMT) |
commit | 3357d377612fc238ff9da61666041764792034bb (patch) | |
tree | 36d7e26521e0a613f2f5ee74d0b3c798a23ee01f /Help | |
parent | 2f13fdef0a9471165751f628cb4b2ba7b83b1ae1 (diff) | |
download | CMake-3357d377612fc238ff9da61666041764792034bb.zip CMake-3357d377612fc238ff9da61666041764792034bb.tar.gz CMake-3357d377612fc238ff9da61666041764792034bb.tar.bz2 |
cmake: Add support for '--build --prefix=<prefix>' form of the argument
The main `cmake --preset` argument for configure presets supports both
forms, so support it for `cmake --build --preset` too.
Issue: #21855
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake.1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 1759b9d..157ea5f 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -416,7 +416,7 @@ following options: Project binary directory to be built. This is required (unless a preset is specified) and must be first. -``--preset <preset>`` +``--preset <preset>``, ``--preset=<preset>`` Use a build preset to specify build options. The project binary directory is inferred from the ``configurePreset`` key. The current working directory must contain CMake preset files. |