diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-01-09 22:12:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-01-09 22:12:53 +0000 |
commit | 997ff3705532f62bd5b8948b2d00ffc1fffe6b7c (patch) | |
tree | 9f25bb4a64713bef08b020d090075c5f06cc7924 /app/translations.pri | |
parent | d084bc1f764833566f3e8eafc9fc297c3fa9ee08 (diff) | |
parent | 4b7d58e71e8864a90d3b567f21029968d6e8edef (diff) |
Merge "Add basic translation support"
Diffstat (limited to 'app/translations.pri')
-rw-r--r-- | app/translations.pri | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/translations.pri b/app/translations.pri new file mode 100644 index 0000000..81bd94b --- /dev/null +++ b/app/translations.pri @@ -0,0 +1,16 @@ +defineReplace(prependAll) { + for(a,$$1):result += $$2$${a}$$3 + return($$result) +} + +qtPrepareTool(QMAKE_LRELEASE, lrelease) +TRANSLATIONS = $$prependAll(LANGUAGES, $$PWD/translations/$${TARGET}_,.ts) + +qm.depends = $${TRANSLATIONS} +qm.input = TRANSLATIONS +qm.output = $$OUT_PWD/../package/root/translations/${QMAKE_FILE_BASE}.qm +qm.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT} +qm.name = LRELEASE ${QMAKE_FILE_IN} +qm.CONFIG += no_link +QMAKE_EXTRA_COMPILERS += qm +PRE_TARGETDEPS += compiler_qm_make_all |