diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-22 09:07:20 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-22 09:07:20 +0100 |
commit | 9339632c619b689451d5f962c9a9b29b9ebd0c93 (patch) | |
tree | af0e7f8eb1999ccf75350e16626ea951e524e7b4 /cmake/opentrack-install.cmake | |
parent | 497980e40ca695f2cf2db0161aac5b88f5d6688e (diff) |
cmake: change translation regen logic
- lupdate runs after every source code change for that module
- lrelease depends on .ts files created by lupdate
- SDK_REGEN_TRANSLATIONS got removed
- file dependencies are expressed right, so parallel build works
Diffstat (limited to 'cmake/opentrack-install.cmake')
-rw-r--r-- | cmake/opentrack-install.cmake | 41 |
1 files changed, 14 insertions, 27 deletions
diff --git a/cmake/opentrack-install.cmake b/cmake/opentrack-install.cmake index 66c0edee..28f13a51 100644 --- a/cmake/opentrack-install.cmake +++ b/cmake/opentrack-install.cmake @@ -55,40 +55,27 @@ function(merge_translations) get_property(modules GLOBAL PROPERTY opentrack-all-modules) - set(deps "") - - get_property(maybe-force-i18n GLOBAL PROPERTY opentrack-force-i18n-regen) - - if(SDK_REGEN_TRANSLATIONS OR maybe-force-i18n) - set(maybe-all ALL) - endif() - foreach(i ${opentrack-all-translations}) - get_property(ts_ GLOBAL PROPERTY "opentrack-ts-${i}") - set(ts "") - foreach(i ${ts_}) - list(APPEND ts "${i}") - endforeach() + get_property(ts GLOBAL PROPERTY "opentrack-ts-${i}") - set(qm-output "${CMAKE_BINARY_DIR}/${i}.qm") + set(deps "") foreach(k ${modules}) list(APPEND deps "i18n-module-${k}") endforeach() - if(NOT ts STREQUAL "") - add_custom_command(OUTPUT "${qm-output}" - COMMAND "${Qt5_DIR}/../../../bin/lrelease" -nounfinished -silent ${ts} -qm "${qm-output}" - DEPENDS ${ts} - COMMENT "Running lrelease for ${i}") - add_custom_target(i18n-lang-${i} ALL DEPENDS "${qm-output}") - list(APPEND all-deps "i18n-lang-${i}") - install(FILES "${qm-output}" DESTINATION "${opentrack-i18n-pfx}" RENAME "${i}.qm" ${opentrack-perms}) - else() - message(FATAL_ERROR "build logic error: no translations for language ${i}") - endif() + set(qm-output "${CMAKE_BINARY_DIR}/${i}.qm") + + add_custom_command(OUTPUT "${qm-output}" + COMMAND "${Qt5_DIR}/../../../bin/lrelease" -nounfinished -silent ${ts} -qm "${qm-output}" + DEPENDS ${ts} ${deps} + COMMENT "Running lrelease for ${i}") + + add_custom_target(i18n-lang-${i} ALL DEPENDS "${qm-output}") + + list(APPEND all-deps "i18n-lang-${i}") + install(FILES "${qm-output}" DESTINATION "${opentrack-i18n-pfx}" RENAME "${i}.qm" ${opentrack-perms}) endforeach() - set(maybe-all "") - add_custom_target(i18n ${maybe-all} DEPENDS ${all-deps} ${deps}) + add_custom_target(i18n DEPENDS ${all-deps} ${deps}) endfunction() |