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:18:16 +0200 |
commit | 3813914451b56d52a7e1e2d3ea76e6fefcdf438b (patch) | |
tree | 4397664c8b7ab95ee06c9f863ac76648f475d6e4 /translations/messages/CMakeLists.txt | |
parent | 81ce1aab500d4d252b3622ea93f0abb48937c1fd (diff) | |
download | knemo-3813914451b56d52a7e1e2d3ea76e6fefcdf438b.tar.gz knemo-3813914451b56d52a7e1e2d3ea76e6fefcdf438b.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>
Diffstat (limited to 'translations/messages/CMakeLists.txt')
-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( ) |