diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-21 22:32:20 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-21 22:32:20 +0000 |
commit | 65246190b69815e4e622ab38247e8fb22ed91a7c (patch) | |
tree | f9505e2aa66d299b9278f2ac2ab8f4fc4d1774e4 /po/CMakeLists.txt | |
parent | 20b40b2428b6c6f555969d1efa909036ede5d8ef (diff) | |
download | amarok-65246190b69815e4e622ab38247e8fb22ed91a7c.tar.gz amarok-65246190b69815e4e622ab38247e8fb22ed91a7c.zip |
[applications/amarok] added cmake support for translations
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1228680 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'po/CMakeLists.txt')
-rw-r--r-- | po/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 00000000..52b30c06 --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1,17 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} amarok.po ) + +foreach( _po ${po_files} ) + get_filename_component( _lang ${_po} PATH ) + tde_create_translation( FILES ${_po} LANG ${_lang} ) +endforeach( ) |