diff options
author | Slávek Banko <[email protected]> | 2021-03-07 16:44:30 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-03-07 16:44:30 +0100 |
commit | 85f66bd45a69c45edcfd7f9be0ed792fbd775e71 (patch) | |
tree | eb0fb4d5d4fb31a9b40c2ae46243faa187a9b03f | |
parent | 2898e2f7092f025748b0a3ed9a569f48f2b20cc5 (diff) | |
download | klamav-85f66bd45a69c45edcfd7f9be0ed792fbd775e71.tar.gz klamav-85f66bd45a69c45edcfd7f9be0ed792fbd775e71.zip |
Use common cmake rules for documentation.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | doc/CMakeLists.txt | 35 | ||||
-rw-r--r-- | doc/en/CMakeLists.txt | 5 |
2 files changed, 34 insertions, 6 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 3a2060f..f6eec15 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1 +1,34 @@ -tde_auto_add_subdirectories( )
\ No newline at end of file +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/en/CMakeLists.txt b/doc/en/CMakeLists.txt deleted file mode 100644 index 105110c..0000000 --- a/doc/en/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -file( GLOB _srcs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.docbook *.css *.png *.jpg ) -tde_create_handbook( - FILES ${_srcs} - DESTINATION ${PROJECT_NAME} -)
\ No newline at end of file |