diff options
author | Brad King <brad.king@kitware.com> | 2016-02-09 15:10:20 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-02-09 15:10:20 (GMT) |
commit | 7b53e8c6a52d64768774608116f6c5cc72d1e0b1 (patch) | |
tree | 9fccaffa510014dad3225ccb3e9a3e2fe41baa05 /Utilities | |
parent | 778fda1e925098ebd4377eaabce932f47bb40ec2 (diff) | |
parent | 8282547e0f9d7370e6f84f97a448b9842009c8c8 (diff) | |
download | CMake-7b53e8c6a52d64768774608116f6c5cc72d1e0b1.zip CMake-7b53e8c6a52d64768774608116f6c5cc72d1e0b1.tar.gz CMake-7b53e8c6a52d64768774608116f6c5cc72d1e0b1.tar.bz2 |
Merge topic 'install-man-conditionally'
8282547e Install ccmake.1 and cmake-gui.1 conditionally with their tools (#15957)
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/Sphinx/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Utilities/Sphinx/CMakeLists.txt b/Utilities/Sphinx/CMakeLists.txt index 1baca35..257ba62 100644 --- a/Utilities/Sphinx/CMakeLists.txt +++ b/Utilities/Sphinx/CMakeLists.txt @@ -156,6 +156,14 @@ if(SPHINX_MAN) if("x${m}" MATCHES "^x(.+)\\.([1-9])\\.rst$") set(name "${CMAKE_MATCH_1}") set(sec "${CMAKE_MATCH_2}") + if(NOT CMakeHelp_STANDALONE) + if(name STREQUAL "ccmake" AND NOT BUILD_CursesDialog) + continue() + endif() + if(name STREQUAL "cmake-gui" AND NOT BUILD_QtDialog) + continue() + endif() + endif() CMake_OPTIONAL_COMPONENT(sphinx-man) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/man/${name}.${sec} DESTINATION ${CMAKE_MAN_DIR}/man${sec} |