diff options
author | Slávek Banko <[email protected]> | 2018-12-20 18:41:24 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-12-20 18:41:58 +0100 |
commit | 657ff9546470dfd74435cf9a68ab705dbd9ab3f8 (patch) | |
tree | 58f3016b68f48b5d356c87db63d2a9cd0d24912c /CMakeL10n.txt | |
parent | dfb36012ab2e821f1df6f20eb9231928d401bb84 (diff) | |
download | k3b-657ff9546470dfd74435cf9a68ab705dbd9ab3f8.tar.gz k3b-657ff9546470dfd74435cf9a68ab705dbd9ab3f8.zip |
Add CMakeL10n rules.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit d44616976482cae1d41c583d00192a6b274b7e9e)
Diffstat (limited to 'CMakeL10n.txt')
-rw-r--r-- | CMakeL10n.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 0000000..a87d06b --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,28 @@ +################################################# +# +# (C) 2018 Slávek Banko +# slavek.banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +cmake_minimum_required( VERSION 2.8 ) + + +##### include our cmake modules ################# + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEL10n ) + + +##### set directory for POT files ############### + +set( POT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../k3b-i18n/template/messages" ) + + +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) |