| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- # file Copyright.txt or https://cmake.org/licensing for details.
- if(NOT CMake_SOURCE_DIR)
- set(CMakeHelp_STANDALONE 1)
- cmake_minimum_required(VERSION 3.1...3.21 FATAL_ERROR)
- get_filename_component(tmp "${CMAKE_CURRENT_SOURCE_DIR}" PATH)
- get_filename_component(CMake_SOURCE_DIR "${tmp}" PATH)
- include(${CMake_SOURCE_DIR}/Modules/CTestUseLaunchers.cmake)
- include(${CMake_SOURCE_DIR}/Source/CMakeVersion.cmake)
- include(${CMake_SOURCE_DIR}/Source/CMakeInstallDestinations.cmake)
- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CTestCustom.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake @ONLY)
- unset(CMAKE_DATA_DIR)
- unset(CMAKE_DATA_DIR CACHE)
- macro(CMake_OPTIONAL_COMPONENT)
- set(COMPONENT "")
- endmacro()
- endif()
- project(CMakeHelp NONE)
- option(SPHINX_INFO "Build Info manual with Sphinx" OFF)
- option(SPHINX_MAN "Build man pages with Sphinx" OFF)
- option(SPHINX_HTML "Build html help with Sphinx" OFF)
- option(SPHINX_SINGLEHTML "Build html single page help with Sphinx" OFF)
- option(SPHINX_QTHELP "Build Qt help with Sphinx" OFF)
- option(SPHINX_LATEXPDF "Build PDF help with Sphinx using LaTeX" OFF)
- option(SPHINX_TEXT "Build text help with Sphinx (not installed)" OFF)
- find_program(SPHINX_EXECUTABLE
- NAMES sphinx-build
- DOC "Sphinx Documentation Builder (sphinx-doc.org)"
- )
- set(SPHINX_FLAGS "" CACHE STRING "Flags to pass to sphinx-build")
- separate_arguments(sphinx_flags UNIX_COMMAND "${SPHINX_FLAGS}")
- mark_as_advanced(SPHINX_TEXT)
- mark_as_advanced(SPHINX_FLAGS)
- if(NOT SPHINX_INFO AND NOT SPHINX_MAN AND NOT SPHINX_HTML AND NOT SPHINX_SINGLEHTML AND NOT SPHINX_QTHELP AND NOT SPHINX_TEXT AND NOT SPHINX_LATEXPDF)
- return()
- elseif(NOT SPHINX_EXECUTABLE)
- message(FATAL_ERROR "SPHINX_EXECUTABLE (sphinx-build) is not found!")
- endif()
- set(copyright_line_regex "^Copyright (2000-20[0-9][0-9] Kitware.*)")
- file(STRINGS "${CMake_SOURCE_DIR}/Copyright.txt" copyright_line
- LIMIT_COUNT 1 REGEX "${copyright_line_regex}")
- if(copyright_line MATCHES "${copyright_line_regex}")
- set(conf_copyright "${CMAKE_MATCH_1}")
- else()
- set(conf_copyright "Kitware, Inc.")
- endif()
- set(conf_docs "${CMake_SOURCE_DIR}/Help")
- set(conf_path "${CMAKE_CURRENT_SOURCE_DIR}")
- set(conf_version "${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}.${CMake_VERSION_PATCH}")
- set(conf_release "${CMake_VERSION}")
- configure_file(conf.py.in conf.py @ONLY)
- set(doc_formats "")
- if(SPHINX_HTML)
- list(APPEND doc_formats html)
- # we provide the path to the produced html output in the console
- # for tools that support URI protocol schemes
- set(html_extra_commands
- COMMAND ${CMAKE_COMMAND} -E echo "sphinx-build html: HTML documentation generated in file://${CMAKE_CURRENT_BINARY_DIR}/html/index.html"
- )
- endif()
- if(SPHINX_MAN)
- list(APPEND doc_formats man)
- endif()
- if(SPHINX_SINGLEHTML)
- list(APPEND doc_formats singlehtml)
- endif()
- if(SPHINX_TEXT)
- list(APPEND doc_formats text)
- endif()
- if(SPHINX_INFO)
- find_program(MAKEINFO_EXECUTABLE
- NAMES makeinfo
- DOC "makeinfo tool"
- )
- if (NOT MAKEINFO_EXECUTABLE)
- message(FATAL_ERROR "MAKEINFO_EXECUTABLE (makeinfo) not found!")
- endif()
- list(APPEND doc_formats texinfo)
- # Sphinx texinfo builder supports .info, .txt, .html and .pdf output.
- # SPHINX_INFO controls the .info output.
- set(texinfo_extra_commands
- COMMAND ${MAKEINFO_EXECUTABLE} --no-split -o
- ${CMAKE_CURRENT_BINARY_DIR}/texinfo/cmake.info
- ${CMAKE_CURRENT_BINARY_DIR}/texinfo/cmake.texi
- )
- endif()
- if(SPHINX_QTHELP)
- find_package(PythonInterp REQUIRED)
- find_program(QCOLLECTIONGENERATOR_EXECUTABLE
- NAMES qcollectiongenerator-qt5 qcollectiongenerator
- DOC "qcollectiongenerator tool"
- )
- if (NOT QCOLLECTIONGENERATOR_EXECUTABLE)
- message(FATAL_ERROR "QCOLLECTIONGENERATOR_EXECUTABLE (qcollectiongenerator) not found!")
- endif()
- list(APPEND doc_formats qthelp)
- set(qthelp_extra_commands
- # Workaround for assistant prior to
- # https://codereview.qt-project.org/#change,82250 in Qt 4.
- COMMAND ${CMAKE_COMMAND} "-DCSS_DIR=${CMAKE_CURRENT_BINARY_DIR}/qthelp/_static"
- -P "${CMAKE_CURRENT_SOURCE_DIR}/apply_qthelp_css_workaround.cmake"
- # Workaround sphinx configurability:
- # https://bitbucket.org/birkenfeld/sphinx/issue/1448/make-qthelp-more-configurable
- COMMAND ${CMAKE_COMMAND} "-DQTHELP_DIR=${CMAKE_CURRENT_BINARY_DIR}/qthelp/"
- -P "${CMAKE_CURRENT_SOURCE_DIR}/fixup_qthelp_names.cmake"
- # Create proper identifiers. Workaround for
- # https://bitbucket.org/birkenfeld/sphinx/issue/1491/qthelp-should-generate-identifiers-for
- COMMAND "${PYTHON_EXECUTABLE}"
- "${CMAKE_CURRENT_SOURCE_DIR}/create_identifiers.py"
- "${CMAKE_CURRENT_BINARY_DIR}/qthelp/"
- COMMAND ${QCOLLECTIONGENERATOR_EXECUTABLE}
- ${CMAKE_CURRENT_BINARY_DIR}/qthelp/CMake.qhcp
- )
- endif()
- if(SPHINX_LATEXPDF)
- list(APPEND doc_formats latexpdf)
- endif()
- set(doc_format_outputs "")
- set(doc_format_last "")
- foreach(format ${doc_formats})
- set(doc_format_output "doc_format_${format}")
- set(doc_format_log "build-${format}.log")
- if(format STREQUAL "latexpdf")
- # This format does not use builder (-b) but make_mode (-M) which expects
- # arguments in peculiar order
- add_custom_command(
- OUTPUT ${doc_format_output}
- COMMAND ${SPHINX_EXECUTABLE}
- -M ${format}
- ${CMake_SOURCE_DIR}/Help
- ${CMAKE_CURRENT_BINARY_DIR}/${format}
- -c ${CMAKE_CURRENT_BINARY_DIR}
- -d ${CMAKE_CURRENT_BINARY_DIR}/doctrees
- ${sphinx_flags}
- > ${doc_format_log} # log stdout, pass stderr
- ${${format}_extra_commands}
- DEPENDS ${doc_format_last}
- COMMENT "sphinx-build ${format}: see Utilities/Sphinx/${doc_format_log}"
- VERBATIM
- )
- else()
- # other formats use standard builder (-b) mode
- add_custom_command(
- OUTPUT ${doc_format_output}
- COMMAND ${SPHINX_EXECUTABLE}
- -c ${CMAKE_CURRENT_BINARY_DIR}
- -d ${CMAKE_CURRENT_BINARY_DIR}/doctrees
- -b ${format}
- ${sphinx_flags}
- ${CMake_SOURCE_DIR}/Help
- ${CMAKE_CURRENT_BINARY_DIR}/${format}
- > ${doc_format_log} # log stdout, pass stderr
- ${${format}_extra_commands}
- DEPENDS ${doc_format_last}
- COMMENT "sphinx-build ${format}: see Utilities/Sphinx/${doc_format_log}"
- VERBATIM
- )
- endif()
- set_property(SOURCE ${doc_format_output} PROPERTY SYMBOLIC 1)
- list(APPEND doc_format_outputs ${doc_format_output})
- set(doc_format_last ${doc_format_output})
- endforeach()
- add_custom_target(documentation ALL DEPENDS ${doc_format_outputs})
- if(CMake_SPHINX_DEPEND_ON_EXECUTABLES)
- foreach(t
- cmake
- ccmake
- cmake-gui
- cpack
- ctest
- )
- if(TARGET ${t})
- # Build documentation after main executables.
- add_dependencies(documentation ${t})
- endif()
- endforeach()
- endif()
- if(SPHINX_INFO)
- CMake_OPTIONAL_COMPONENT(sphinx-info)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/texinfo/cmake.info
- DESTINATION ${CMAKE_INFO_DIR}
- ${COMPONENT}
- )
- endif()
- if(SPHINX_MAN)
- file(GLOB man_rst RELATIVE ${CMake_SOURCE_DIR}/Help/manual
- ${CMake_SOURCE_DIR}/Help/manual/*.[1-9].rst)
- foreach(m ${man_rst})
- if("x${m}" MATCHES "^x(.+)\\.([1-9])\\.rst$")
- set(name "${CMAKE_MATCH_1}")
- set(sec "${CMAKE_MATCH_2}")
- set(skip FALSE)
- if(NOT CMakeHelp_STANDALONE)
- if(name STREQUAL "ccmake" AND NOT BUILD_CursesDialog)
- set(skip TRUE)
- elseif(name STREQUAL "cmake-gui" AND NOT BUILD_QtDialog)
- set(skip TRUE)
- endif()
- endif()
- if(NOT skip)
- CMake_OPTIONAL_COMPONENT(sphinx-man)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/man/${name}.${sec}
- DESTINATION ${CMAKE_MAN_DIR}/man${sec}
- ${COMPONENT})
- endif()
- unset(skip)
- endif()
- endforeach()
- endif()
- if(SPHINX_HTML)
- CMake_OPTIONAL_COMPONENT(sphinx-html)
- install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html
- DESTINATION ${CMAKE_DOC_DIR}
- ${COMPONENT}
- PATTERN .buildinfo EXCLUDE
- )
- endif()
- if(SPHINX_SINGLEHTML)
- CMake_OPTIONAL_COMPONENT(sphinx-singlehtml)
- install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/singlehtml
- DESTINATION ${CMAKE_DOC_DIR}
- ${COMPONENT}
- PATTERN .buildinfo EXCLUDE
- )
- endif()
- if(SPHINX_QTHELP)
- CMake_OPTIONAL_COMPONENT(sphinx-qthelp)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qthelp/CMake.qch
- DESTINATION ${CMAKE_DOC_DIR} ${COMPONENT}
- )
- endif()
- if(SPHINX_LATEXPDF)
- CMake_OPTIONAL_COMPONENT(sphinx-latexpdf)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/latexpdf/latex/CMake.pdf
- DESTINATION ${CMAKE_DOC_DIR} ${COMPONENT}
- )
- endif()
|