diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-01 03:08:13 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-01 03:08:13 +0100 |
commit | 47e3b8c07e89067296c1839c00fa94f39422c4a9 (patch) | |
tree | a48e02a04ddceeaa7d1ad88586909046c1686038 | |
parent | 09deb6aa1a5a78793aa7abe8848df6056560fae1 (diff) | |
download | tdevelop-47e3b8c07e89067296c1839c00fa94f39422c4a9.tar.gz tdevelop-47e3b8c07e89067296c1839c00fa94f39422c4a9.zip |
Add CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | CMakeL10n.txt | 35 | ||||
-rw-r--r-- | kdevdesigner/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | kdevdesigner/src/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | parts/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | parts/tipofday/CMakeL10n.txt | 6 |
5 files changed, 50 insertions, 0 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 00000000..36799e40 --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,35 @@ +################################################# +# +# (C) 2019 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}/../tde-i18n/template/messages/tdevelop" ) + + +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "tdevelop" + EXCLUDES + "^kdevdesigner/src/" + "^parts/tipofday/" +) + +tde_l10n_auto_add_subdirectories() diff --git a/kdevdesigner/CMakeL10n.txt b/kdevdesigner/CMakeL10n.txt new file mode 100644 index 00000000..b585ce4a --- /dev/null +++ b/kdevdesigner/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/kdevdesigner/src/CMakeL10n.txt b/kdevdesigner/src/CMakeL10n.txt new file mode 100644 index 00000000..3003e91b --- /dev/null +++ b/kdevdesigner/src/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "tdevdesigner" ) diff --git a/parts/CMakeL10n.txt b/parts/CMakeL10n.txt new file mode 100644 index 00000000..b585ce4a --- /dev/null +++ b/parts/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/parts/tipofday/CMakeL10n.txt b/parts/tipofday/CMakeL10n.txt new file mode 100644 index 00000000..7d07b2f9 --- /dev/null +++ b/parts/tipofday/CMakeL10n.txt @@ -0,0 +1,6 @@ +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "tdevtipofday" + SOURCES "." "tips" +) |