diff options
author | Craig Scott <craig.scott@crascit.com> | 2020-04-06 10:34:01 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-04-06 10:34:15 (GMT) |
commit | 1a020d9e79f89253d9ff4b0c9cfcf88d7279a01e (patch) | |
tree | 0fe1a717a444ba2d4e6ecbde1ede41866aac804f | |
parent | 11998c63fd9be2fe64ec05c2ba0bce22ca8cf140 (diff) | |
parent | 477b8b5dfec6884879970fedf8537a8a82e9b20a (diff) | |
download | CMake-1a020d9e79f89253d9ff4b0c9cfcf88d7279a01e.zip CMake-1a020d9e79f89253d9ff4b0c9cfcf88d7279a01e.tar.gz CMake-1a020d9e79f89253d9ff4b0c9cfcf88d7279a01e.tar.bz2 |
Merge topic 'docs-CMAKE_FIND_DEBUG_MODE' into release-3.17
477b8b5dfe Help: Improve discoverability of CMAKE_FIND_DEBUG_MODE
218bda9671 Help: Fix CMAKE_FIND_DEBUG_MODE list formatting
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4569
-rw-r--r-- | Help/manual/cmake.1.rst | 4 | ||||
-rw-r--r-- | Help/variable/CMAKE_FIND_DEBUG_MODE.rst | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 28a081f..d343874 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -242,10 +242,12 @@ Options :command:`message(SEND_ERROR)` calls. ``--debug-find`` - Put cmake find in a debug mode. + Put cmake find commands in a debug mode. Print extra find call information during the cmake run to standard error. Output is designed for human consumption and not for parsing. + See also the :variable:`CMAKE_FIND_DEBUG_MODE` variable for debugging + a more local part of the project. ``--trace`` Put cmake in trace mode. diff --git a/Help/variable/CMAKE_FIND_DEBUG_MODE.rst b/Help/variable/CMAKE_FIND_DEBUG_MODE.rst index 33ffdd6..f5fd8ce 100644 --- a/Help/variable/CMAKE_FIND_DEBUG_MODE.rst +++ b/Help/variable/CMAKE_FIND_DEBUG_MODE.rst @@ -3,6 +3,7 @@ CMAKE_FIND_DEBUG_MODE Print extra find call information for the following commands to standard error: + * :command:`find_program` * :command:`find_library` * :command:`find_file` |