From 141688092d2bd07d85ee5342b90cfa1306531fd1 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Sun, 1 Nov 2015 23:45:49 -0800 Subject: [PATCH] Fix missing application icon in Qt Creator qmake build. Task-number: QTCREATORBUG-15260 Change-Id: I60bb8c455e708d377828801377c4fee43e654dcb Reviewed-by: Erik Verbruggen Reviewed-by: Eike Ziller --- src/app/app.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/app.pro b/src/app/app.pro index 5b7ad52a035..7ae24c943f3 100644 --- a/src/app/app.pro +++ b/src/app/app.pro @@ -32,13 +32,13 @@ win32 { ASSETCATALOG.output = $$IDE_DATA_PATH/qtcreator.icns ASSETCATALOG.commands = xcrun actool \ --app-icon qtcreator \ - --output-partial-info-plist /dev/null \ + --output-partial-info-plist $$shell_quote($(TMPDIR)/qtcreator.Info.plist) \ --platform macosx \ --minimum-deployment-target 10.7 \ --compile $$shell_quote($$IDE_DATA_PATH) \ - $$shell_quote($$PWD/qtcreator.xcassets) + $$shell_quote($$PWD/qtcreator.xcassets) > /dev/null ASSETCATALOG.input = ASSETCATALOG.files - ASSETCATALOG.CONFIG += no_link + ASSETCATALOG.CONFIG += no_link target_predeps QMAKE_EXTRA_COMPILERS += ASSETCATALOG } QMAKE_INFO_PLIST = Info.plist