diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-03 04:04:49 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-03 04:04:49 +0100 |
commit | b1d935418fe74801c5f50d75cea87609b456b590 (patch) | |
tree | 780edee7981d262ece621ab155ac02facfcc118f /CMakeL10n.txt | |
parent | 0ef4ca6d362d2a6d8a3821e2f47a7d141fbcd3a9 (diff) | |
download | kpilot-b1d935418fe74801c5f50d75cea87609b456b590.tar.gz kpilot-b1d935418fe74801c5f50d75cea87609b456b590.zip |
Add CMakeL10n rules.
Create translation template.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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/" +) |