diff options
author | Slávek Banko <[email protected]> | 2020-08-30 16:37:45 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-08-30 16:41:30 +0200 |
commit | 77027b0ff33322842f5400bf20eef76f5394b4f4 (patch) | |
tree | 10d537e2b49c353aeec5edca377b0fffb46f0417 /doc | |
parent | d1571dea2aac285280c35383f79cda03cdcb913f (diff) | |
download | kima-77027b0ff33322842f5400bf20eef76f5394b4f4.tar.gz kima-77027b0ff33322842f5400bf20eef76f5394b4f4.zip |
Move translations to a new directory layout.
Add support for LINGUAS for listing translations to install.
Use common cmake rules for documentation.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 42fedfaa928a479661f30381df1e17ee644e0d6f)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 35 | ||||
-rw-r--r-- | doc/en/CMakeLists.txt | 2 |
2 files changed, 34 insertions, 3 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 6d0aa9f..f6eec15 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1 +1,34 @@ -tde_auto_add_subdirectories( ) +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 c96df24..0000000 --- a/doc/en/CMakeLists.txt +++ /dev/null @@ -1,2 +0,0 @@ -tde_create_handbook( DESTINATION ${PROJECT_NAME} ) - |