diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-05-26 16:03:50 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-05-26 16:09:15 +0200 |
commit | c4545b808eeaf65ac9aaae94a78ea4cf4f9ea96f (patch) | |
tree | c406decd8007087f650fcc468970428fae334ba3 /doc/CMakeLists.txt | |
parent | 5cad60063799de1846011f1fd5c6023166df9d28 (diff) | |
download | kscope-c4545b808eeaf65ac9aaae94a78ea4cf4f9ea96f.tar.gz kscope-c4545b808eeaf65ac9aaae94a78ea4cf4f9ea96f.zip |
Move translations to a new directory layout.
Add support for LINGUAS for listing translations to install.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 51db3dd2a0528687837beede00b1522ebb8518fe)
Diffstat (limited to 'doc/CMakeLists.txt')
-rw-r--r-- | doc/CMakeLists.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index d08a511..70d6348 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,2 +1,14 @@ +file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * ) +string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) -tde_auto_add_subdirectories() +foreach( _dir ${_dirs} ) + if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND + EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/CMakeLists.txt ) + if( "${_dir}" STREQUAL "en" OR + "${_dir}" STREQUAL "man" OR + "${_linguas}" MATCHES "^;*$" OR + ";${_linguas};" MATCHES ";${_dir};" ) + add_subdirectory( ${_dir} ) + endif( ) + endif() +endforeach() |