diff options
author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2014-12-07 18:25:28 (GMT) |
---|---|---|
committer | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2015-07-07 05:11:09 (GMT) |
commit | 938bbc4352cf34532dc1f52998ec7d23532df765 (patch) | |
tree | 4a3c726707f16d8fd6b8ec885ab1847bbc277b65 /Utilities | |
parent | fd23fc57115d21ad08da6b131ec9abe141e583e5 (diff) | |
download | CMake-938bbc4352cf34532dc1f52998ec7d23532df765.zip CMake-938bbc4352cf34532dc1f52998ec7d23532df765.tar.gz CMake-938bbc4352cf34532dc1f52998ec7d23532df765.tar.bz2 |
CMake: Install COMPONENTs
Added components:
- cmake
- ctest
- cpack
- cmake-gui
- ccmake
- data
- sphinx-html
- sphinx-singlehtml
- sphinx-qthelp
Other now Unspecified.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/Sphinx/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Utilities/Sphinx/CMakeLists.txt b/Utilities/Sphinx/CMakeLists.txt index a755ca1..f2a3727 100644 --- a/Utilities/Sphinx/CMakeLists.txt +++ b/Utilities/Sphinx/CMakeLists.txt @@ -162,6 +162,7 @@ endif() if(SPHINX_HTML) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_DOC_DIR} + COMPONENT sphinx-html PATTERN .buildinfo EXCLUDE ) endif() @@ -169,12 +170,13 @@ endif() if(SPHINX_SINGLEHTML) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/singlehtml DESTINATION ${CMAKE_DOC_DIR} + COMPONENT sphinx-singlehtml PATTERN .buildinfo EXCLUDE ) endif() if(SPHINX_QTHELP) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qthelp/CMake-${CMake_VERSION_MAJOR}${CMake_VERSION_MINOR}${CMake_VERSION_PATCH}.qch - DESTINATION ${CMAKE_DOC_DIR} + DESTINATION ${CMAKE_DOC_DIR} COMPONENT sphinx-qthelp ) endif() |