diff options
author | Slávek Banko <[email protected]> | 2019-01-03 04:04:49 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-03 04:32:51 +0100 |
commit | 15f63232cbc0aa7341def61eb503af6d51cd899d (patch) | |
tree | 7ffed4e073f980b466a8e502c818cc93f2b72f8d /CMakeL10n.txt | |
parent | 7d4da1a03dce87c2292283c70efea49b534ecd42 (diff) | |
download | kpilot-15f63232cbc0aa7341def61eb503af6d51cd899d.tar.gz kpilot-15f63232cbc0aa7341def61eb503af6d51cd899d.zip |
Add CMakeL10n rules.
Create translation template.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit b1d935418fe74801c5f50d75cea87609b456b590)
Diffstat (limited to 'CMakeL10n.txt')
-rw-r--r-- | CMakeL10n.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 0000000..b9cf8a4 --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,26 @@ +################################################# +# +# (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 ) + + +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "kpilot" + EXCLUDES "^tests/" +) |