diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-04-09 15:50:06 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-04-09 11:57:30 -0700 |
commit | a8d06b848edf547376bc32a8b26e947cdcd2c28a (patch) | |
tree | 6ad5a51354f0d7ca76fcac6a01c1b0469da314df /CMakeLists.txt | |
parent | 1a662df648ef705ee82049adb6dba119ad9df0a8 (diff) | |
download | subsurface-a8d06b848edf547376bc32a8b26e947cdcd2c28a.tar.gz |
Move the translations to it's own subfolder
By adding a new CMakeLists.txt file and configuring
the translations inside of it's folder, the buildsystem
will compile everything on that folder.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 37 |
1 files changed, 3 insertions, 34 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 44fb7f278..acb078785 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -155,6 +155,9 @@ IF(CMAKE_SYSTEM_NAME STREQUAL "Windows") endif() ENDIF() +# include translations +add_subdirectory(translations) + # compile the core library, in C. SET(SUBSURFACE_CORE_LIB_SRCS @@ -357,32 +360,6 @@ set(DOCFILES ${CMAKE_BINARY_DIR}/Documentation/user-manual_ru.html ) -QT5_ADD_TRANSLATION(TRANSLATIONS - translations/subsurface_source.ts - translations/subsurface_bg_BG.ts - translations/subsurface_cs.ts - translations/subsurface_da_DK.ts - translations/subsurface_de_CH.ts - translations/subsurface_de_DE.ts - translations/subsurface_en_GB.ts - translations/subsurface_es_ES.ts - translations/subsurface_et_EE.ts - translations/subsurface_fi_FI.ts - translations/subsurface_fr_FR.ts - translations/subsurface_it_IT.ts - translations/subsurface_lv_LV.ts - translations/subsurface_nb_NO.ts - translations/subsurface_nl_NL.ts - translations/subsurface_pl_PL.ts - translations/subsurface_pt_BR.ts - translations/subsurface_pt_PT.ts - translations/subsurface_ru_RU.ts - translations/subsurface_sk_SK.ts - translations/subsurface_sv_SE.ts - translations/subsurface_tr.ts - translations/subsurface_zh_TW.ts -) - set(QTTRANSLATIONS_BASE qt_da.qm qt_de.qm @@ -398,14 +375,6 @@ set(QTTRANSLATIONS_BASE qt_zh_TW.qm ) -# disabled translations as they are below 50%: -# translations/subsurface_el_GR.ts \ -# translations/subsurface_he.ts \ -# translations/subsurface_hu.ts \ -# translations/subsurface_ro_RO.ts \ - -ADD_CUSTOM_TARGET (translations ALL DEPENDS ${TRANSLATIONS}) - if(QT_TRANSLATION_DIR STREQUAL "") set(QT_TRANSLATION_DIR ${Qt5Core_DIR}/../../../translations) endif() |