diff options
author | Ray-V <ray-v@inbox.lv> | 2021-06-19 23:27:53 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-07-09 14:21:43 +0200 |
commit | 53d1da8b55ce7ab68d5e0033bf3efe8dae6997ee (patch) | |
tree | 8d5a048c1b24ee191ce25ebe4d3e48535d68457a /translations/messages | |
parent | da52ee38a348bc668ab19d1255a50e6ebfe9b711 (diff) | |
download | knemo-53d1da8b55ce7ab68d5e0033bf3efe8dae6997ee.tar.gz knemo-53d1da8b55ce7ab68d5e0033bf3efe8dae6997ee.zip |
Removed CMakeLists.txt for doc and translations
Moved doc/en/index.docbook to doc/en/kcontrol/
Deleted and added macro calls in top level CMakeLists.txt
Signed-off-by: Ray-V <ray-v@inbox.lv>
(cherry picked from commit 3813914451b56d52a7e1e2d3ea76e6fefcdf438b)
Diffstat (limited to 'translations/messages')
-rw-r--r-- | translations/messages/CMakeLists.txt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt deleted file mode 100644 index 75c89f8..0000000 --- a/translations/messages/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po ) -string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) - -foreach( _po ${po_files} ) - get_filename_component( _lang ${_po} NAME_WE ) - if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" ) - if( "${_po}" MATCHES "^([^/]*)/.*" ) - string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" ) - else( ) - set( _component "${PROJECT_NAME}" ) - endif( ) - tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} ) - endif( ) -endforeach( ) |