diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-12-10 22:23:56 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-12-10 22:23:56 +0100 |
commit | a037fdbd50cfe5a0aaeae5d9c498dbaae9f9c930 (patch) | |
tree | f62fb82f5fb8188ffbcbff51173c1b3a0ac73009 /CMakeLists.txt | |
parent | bd8b06e10dc95299920cae17502023376665d122 (diff) | |
download | tdmtheme-a037fdbd50cfe5a0aaeae5d9c498dbaae9f9c930.tar.gz tdmtheme-a037fdbd50cfe5a0aaeae5d9c498dbaae9f9c930.zip |
Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cb989be..541754d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,8 @@ option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" option( BUILD_ALL "Build all" ON ) option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) +option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) + ##### configure checks @@ -67,6 +69,7 @@ set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) add_subdirectory( src ) tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) ##### write configure files |