diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-24 00:14:10 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-24 12:02:49 (GMT) |
commit | f4f6529354a2e551626fb77e22624cf180baa9b0 (patch) | |
tree | 11679aec8fdfb7c9f76539f2fe96ef828c5b92e4 /Help | |
parent | cbe7e8fae48b3663e784bb37d5f66bf8b3eb0546 (diff) | |
download | CMake-f4f6529354a2e551626fb77e22624cf180baa9b0.zip CMake-f4f6529354a2e551626fb77e22624cf180baa9b0.tar.gz CMake-f4f6529354a2e551626fb77e22624cf180baa9b0.tar.bz2 |
Help: cmake-packages: Add missing slash.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-packages.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake-packages.7.rst b/Help/manual/cmake-packages.7.rst index 952da3c..23a8b68 100644 --- a/Help/manual/cmake-packages.7.rst +++ b/Help/manual/cmake-packages.7.rst @@ -405,7 +405,7 @@ be true. This can be tested with logic in the package configuration file: set(ClimbingStats_FOUND False) set(ClimbingStats_NOTFOUND_MESSAGE "Specified unsupported component: ${_comp}") endif() - include("${CMAKE_CURRENT_LIST_DIR}ClimbingStats${_comp}Targets.cmake") + include("${CMAKE_CURRENT_LIST_DIR}/ClimbingStats${_comp}Targets.cmake") endforeach() Here, the ``ClimbingStats_NOTFOUND_MESSAGE`` is set to a diagnosis that the package |