diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-22 08:29:03 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-22 08:29:03 +0100 |
commit | 4be202e6b5e57e185f2622cdab4e7bd13720167f (patch) | |
tree | c4efff09dd21e1dd3247e4cafced0ee3742aec75 /cmake/opentrack-install.cmake | |
parent | 6b1314c99897140b274fbcc7b5cbdf772d24f2e2 (diff) |
cmake/i18n: express file dependencies correctly
Otherwise parallel make was doing lupdate -> lrelease out of order,
leading to badness.
Also build failing unless all .ts files existed. We need a way to
bootstrap .ts files obviously.
Diffstat (limited to 'cmake/opentrack-install.cmake')
-rw-r--r-- | cmake/opentrack-install.cmake | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/cmake/opentrack-install.cmake b/cmake/opentrack-install.cmake index 844e77f5..66c0edee 100644 --- a/cmake/opentrack-install.cmake +++ b/cmake/opentrack-install.cmake @@ -57,8 +57,18 @@ function(merge_translations) 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}") + get_property(ts_ GLOBAL PROPERTY "opentrack-ts-${i}") + set(ts "") + foreach(i ${ts_}) + list(APPEND ts "${i}") + endforeach() set(qm-output "${CMAKE_BINARY_DIR}/${i}.qm") @@ -79,10 +89,6 @@ function(merge_translations) endif() endforeach() set(maybe-all "") - get_property(maybe-force-i18n GLOBAL PROPERTY opentrack-force-i18n-regen) - if(SDK_REGEN_TRANSLATIONS OR maybe-force-i18n) - set(maybe-all ALL) - endif() add_custom_target(i18n ${maybe-all} DEPENDS ${all-deps} ${deps}) endfunction() |