这个问题之前已经在qt社区发过:https ://forum.qt.io/topic/106930/how-to-run-lupdate-with-a-qmake-config
我在我的项目文件中使用了这样的构造:
LANGUAGES = de
TRANSLATION_NAME = authorization
include(../../gen_translations.pri)
其中 gen_translations.pri 看起来像这样:
# parameters: var, prepend, append
defineReplace(prependAll) {
for(a,$$1):result += $$2$${a}$$3
return($$result)
}
TRANSLATIONS = $$prependAll(LANGUAGES, $$PWD/libs/$$TRANSLATION_NAME/translations/lib$${TRANSLATION_NAME}_, .ts)
TRANSLATIONS_FILES =
qtPrepareTool(LRELEASE, lrelease)
for(tsfile, TRANSLATIONS) {
qmfile = $$shadowed($$tsfile)
qmfile ~= s,.ts$,.qm,
qmdir = $$dirname(qmfile)
!exists($$qmdir) {
mkpath($$qmdir)|error("Aborting.")
}
command = $$LRELEASE -removeidentical $$tsfile -qm $$qmfile
system($$command)|error("Failed to run: $$command")
TRANSLATIONS_FILES += $$qmfile
}
for(qmentry, $$list($$TRANSLATIONS_FILES)) {
qmpath = $$OUT_PWD/../translations
qmpathname = $$replace(qmpath,/,)
qmpathname = $$replace(qmpathname,\.,)
qmpathname = $$replace(qmpathname,:,)
qmpathname = $$replace(qmpathname," ",)
qmentity = qmfiles_$${qmpathname}
eval($${qmentity}.files += $$qmentry)
eval($${qmentity}.path = $$qmpath)
INSTALLS *= $${qmentity}
}
它为我生成*.qm
文件并使用 make install 将它们移动到定义的位置。
我不想qmake
在我的开发机器上为每个构建执行全部内容。因此,我想通过将其包装为有条件的qmake
:
translate{
LANGUAGES = de
TRANSLATION_NAME = authorization
include(../../gen_translations.pri)
}
这样我就可以决定何时获取*.qm
文件,何时不获取。但是我无法lupdate
事先在项目文件上运行,因为它被那个条件阻止了。
我敢肯定,有人有更好的主意来完成这项任务。
提前致谢。