b4fe9ce225
windeployqt is a tool that aids in the deployment of Qt libraries and other files on Windows. This feature (CONFIG+=windeployqt) adds automatic invocation of windeployqt for qmake projects as a post-link action. For Visual Studio projects, windeployqt is added as a custom target which runs after linking, automatically adding the output as deployment items. Task-number: QTBUG-35630 Change-Id: I4cdcb1a7f70cedccb4a4e17be5eb9f5de35a4d66 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
20 lines
953 B
Plaintext
20 lines
953 B
Plaintext
# Extra target for running windeployqt
|
|
qtPrepareTool(QMAKE_WINDEPLOYQT, windeployqt)
|
|
build_pass {
|
|
load(resolve_target)
|
|
|
|
isEmpty(WINDEPLOYQT_OPTIONS): WINDEPLOYQT_OPTIONS = -qmldir $$shell_quote($$shell_path($$_PRO_FILE_PWD_))
|
|
WINDEPLOYQT_TARGET = $$shell_quote($$shell_path($$QMAKE_RESOLVED_TARGET))
|
|
WINDEPLOYQT_OUTPUT = $$shell_quote($$shell_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
|