e5024c219f
"system" refers to the system's native shell, which is what qmake's system() invokes, and whose convention by far most commands invoked from a makefile will need. "shell" refers to the shell invoked by make, which diverges from the system shell only when qmake/mingw32-make is called from an msys shell. its conventions need to be used for anything the shell itself does (e.g., assembling env variables, but also command line argument unquoting) and the commands the mkspec sets according to the shell (e.g., QMAKE_MOVE). Change-Id: I0000aa9417c199cf8a810619d31ded24bb0675f9 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
20 lines
956 B
Plaintext
20 lines
956 B
Plaintext
# Extra target for running windeployqt
|
|
qtPrepareTool(QMAKE_WINDEPLOYQT, windeployqt)
|
|
build_pass {
|
|
load(resolve_target)
|
|
|
|
isEmpty(WINDEPLOYQT_OPTIONS): WINDEPLOYQT_OPTIONS = -qmldir $$shell_quote($$system_path($$_PRO_FILE_PWD_))
|
|
WINDEPLOYQT_TARGET = $$shell_quote($$system_path($$QMAKE_RESOLVED_TARGET))
|
|
WINDEPLOYQT_OUTPUT = $$shell_quote($$system_path($$dirname(QMAKE_RESOLVED_TARGET)/$$basename(TARGET).windeployqt))
|
|
windeployqt.target = windeployqt
|
|
windeployqt.commands = $$QMAKE_WINDEPLOYQT $$WINDEPLOYQT_OPTIONS -list target $$WINDEPLOYQT_TARGET > $$WINDEPLOYQT_OUTPUT
|
|
|
|
windeployqt_clean.commands = if exist $$WINDEPLOYQT_OUTPUT for /f %i in ($$WINDEPLOYQT_OUTPUT) do $$QMAKE_DEL_FILE %~fi && $$QMAKE_DEL_DIR %~pi
|
|
QMAKE_EXTRA_TARGETS += windeployqt_clean
|
|
DISTCLEAN_DEPS += windeployqt_clean
|
|
QMAKE_DISTCLEAN += $$WINDEPLOYQT_OUTPUT
|
|
} else {
|
|
windeployqt.CONFIG += recursive
|
|
}
|
|
QMAKE_EXTRA_TARGETS += windeployqt
|