diff options
author | Slávek Banko <[email protected]> | 2020-03-24 14:46:10 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-03-24 14:46:38 +0100 |
commit | b4d2cbe393f2be08eb782706ffdaf5ce05c6e8e2 (patch) | |
tree | b7aed82e0bd168977766ebcc257fdad24d6e2d92 /doc/CMakeLists.txt | |
parent | ee4bfe62003e4e5c84d3b102ae45428c0e646dfc (diff) | |
download | abakus-b4d2cbe393f2be08eb782706ffdaf5ce05c6e8e2.tar.gz abakus-b4d2cbe393f2be08eb782706ffdaf5ce05c6e8e2.zip |
Add support for LINGUAS for listing translations to install.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 8adeb4111077df36629317e21fd00066bc00f397)
Diffstat (limited to 'doc/CMakeLists.txt')
-rw-r--r-- | doc/CMakeLists.txt | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index a8b8de4..cd4611d 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,12 +1,13 @@ -################################################# -# -# (C) 2010-2011 Serghei Amelian -# serghei (DOT) amelian (AT) gmail.com -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# +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 + "${_linguas}" MATCHES "^;*$" OR + ";${_linguas};" MATCHES ";${_dir};" ) + add_subdirectory( ${_dir} ) + endif( ) + endif() +endforeach() |