diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-10-20 02:56:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-10-20 15:21:40 (GMT) |
commit | 3043c17039b8aa14c1a3ffdaef70ab4010c1be20 (patch) | |
tree | 4b5fe988dca122db6de14ad49e159e8cae9b3061 /Help/variable | |
parent | 7d710abc87a83d96bb3b0f504338c2110d9afa19 (diff) | |
download | CMake-3043c17039b8aa14c1a3ffdaef70ab4010c1be20.zip CMake-3043c17039b8aa14c1a3ffdaef70ab4010c1be20.tar.gz CMake-3043c17039b8aa14c1a3ffdaef70ab4010c1be20.tar.bz2 |
Help: Add more CLI `:option:` references to various pages
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_COMMAND.rst | 2 | ||||
-rw-r--r-- | Help/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.rst | 2 | ||||
-rw-r--r-- | Help/variable/CMAKE_FIND_PACKAGE_REDIRECTS_DIR.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Help/variable/CMAKE_COMMAND.rst b/Help/variable/CMAKE_COMMAND.rst index f80b46c..e65ff8c 100644 --- a/Help/variable/CMAKE_COMMAND.rst +++ b/Help/variable/CMAKE_COMMAND.rst @@ -4,5 +4,5 @@ CMAKE_COMMAND The full path to the :manual:`cmake(1)` executable. This is the full path to the CMake executable :manual:`cmake(1)` which is -useful from custom commands that want to use the ``cmake -E`` option for +useful from custom commands that want to use the :option:`cmake -E` option for portable system commands. (e.g. ``/usr/local/bin/cmake``) diff --git a/Help/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.rst b/Help/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.rst index f77e939..58818f4 100644 --- a/Help/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.rst +++ b/Help/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.rst @@ -13,6 +13,6 @@ This switch should be used during the initial CMake run. Otherwise if the package has already been found in a previous CMake run, the variables which have been stored in the cache will still be there. In that case it is recommended to remove the cache variables for this -package from the cache using the cache editor or :manual:`cmake(1)` ``-U`` +package from the cache using the cache editor or :option:`cmake -U`. See also the :variable:`CMAKE_REQUIRE_FIND_PACKAGE_<PackageName>` variable. diff --git a/Help/variable/CMAKE_FIND_PACKAGE_REDIRECTS_DIR.rst b/Help/variable/CMAKE_FIND_PACKAGE_REDIRECTS_DIR.rst index 5d45fb0..b27a3d9 100644 --- a/Help/variable/CMAKE_FIND_PACKAGE_REDIRECTS_DIR.rst +++ b/Help/variable/CMAKE_FIND_PACKAGE_REDIRECTS_DIR.rst @@ -25,4 +25,4 @@ CMake configures the project. ``CMAKE_FIND_PACKAGE_REDIRECTS_DIR`` is only set in CMake project mode. It is not set when CMake is run in script mode -(i.e. :manual:`cmake -P ... <cmake(1)>`). +(i.e. :option:`cmake -P`). |