diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-12-11 13:48:03 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-12-11 13:48:24 +0100 |
commit | b3aafefc80e36225b9448a0cae69da63966bb519 (patch) | |
tree | 0a7172630c09e3d9b4165d4467b4609c99c9f223 /CMakeLists.txt | |
parent | e7aa8f1e7ff96614e124feea838d1386375c8ada (diff) | |
download | knmap-b3aafefc80e36225b9448a0cae69da63966bb519.tar.gz knmap-b3aafefc80e36225b9448a0cae69da63966bb519.zip |
Add CMakeL10n rules.
Create translation template.
Add CMake rules to build translations.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d2676c2f4e573b44f60386f984b07cf851868a22)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2548c34..929ff3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,7 @@ 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 @@ -68,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 |