Merge branch 'install-man-conditionally' into release

This commit is contained in:
Brad King 2016-02-08 10:35:51 -05:00
commit 98d6d8f9e2
1 changed files with 8 additions and 0 deletions

View File

@ -156,6 +156,14 @@ if(SPHINX_MAN)
if("x${m}" MATCHES "^x(.+)\\.([1-9])\\.rst$") if("x${m}" MATCHES "^x(.+)\\.([1-9])\\.rst$")
set(name "${CMAKE_MATCH_1}") set(name "${CMAKE_MATCH_1}")
set(sec "${CMAKE_MATCH_2}") 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) CMake_OPTIONAL_COMPONENT(sphinx-man)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/man/${name}.${sec} install(FILES ${CMAKE_CURRENT_BINARY_DIR}/man/${name}.${sec}
DESTINATION ${CMAKE_MAN_DIR}/man${sec} DESTINATION ${CMAKE_MAN_DIR}/man${sec}