summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-01-30 16:01:42 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-01-31 23:23:19 +0100
commit6eb0b661f24ad4d5f19ae114e2504de7e52ebbb5 (patch)
tree19b284fabc8a01e2dd499280ed653a1c3b8f08f6
parent8c68c80a46ae202b8683c5a7e46dabeedb73f24f (diff)
downloadktechlab-6eb0b661.tar.gz
ktechlab-6eb0b661.zip
Use common rules for build and install documentation.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 9ab5d687175d70af5145379608c34f9832043932)
-rw-r--r--CMakeLists.txt2
-rw-r--r--doc/CMakeLists.txt34
-rw-r--r--doc/man/CMakeLists.txt7
3 files changed, 1 insertions, 42 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c18e6c5..0b43542 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -74,7 +74,7 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
add_subdirectory( src )
add_subdirectory( icons )
add_subdirectory( microbe )
-tde_conditional_add_subdirectory( BUILD_DOC doc )
+tde_conditional_add_project_docs( BUILD_DOC )
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
deleted file mode 100644
index f6eec15..0000000
--- a/doc/CMakeLists.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
-list( REMOVE_ITEM _dirs html man )
-
-string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
-
-foreach( _dir IN LISTS _dirs )
- if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}
- AND ( "${_dir}" STREQUAL "en" OR
- "${_linguas}" MATCHES "^;*$" OR
- ";${_linguas};" MATCHES ";${_dir};" ))
- file( GLOB _doc_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} ${_dir}/*.docbook )
- if( _doc_files )
- list( FIND _doc_files "index.docbook" _find_index )
- if( -1 EQUAL _find_index )
- set( _noindex "NOINDEX" )
- else()
- unset( _noindex )
- endif()
- tde_create_handbook(
- SOURCE_BASEDIR ${_dir}
- ${_noindex}
- LANG ${_dir}
- DESTINATION ${PROJECT_NAME}
- )
- endif()
- endif()
-endforeach()
-
-if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/html/CMakeLists.txt )
- add_subdirectory( html )
-endif()
-if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/man/CMakeLists.txt )
- add_subdirectory( man )
-endif()
diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt
deleted file mode 100644
index 5c8c2e4..0000000
--- a/doc/man/CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-##### man pages
-
-INSTALL(
- FILES ${PROJECT_NAME}.1 microbe.1
- DESTINATION ${MAN_INSTALL_DIR}/man1
- COMPONENT doc
-)