From 4cde7b2ed657e5cc2f5f7c071f4ff0a7dd20d56b Mon Sep 17 00:00:00 2001 From: kh1 Date: Mon, 18 Mar 2013 13:17:58 +0100 Subject: Fix missing wizard icon on a windows static build. Q_IMPORT_PLUGIN() macros are needed in application code only for Qt4, in Qt5 those are automatically generated by qmake. Change-Id: Ic75795be402592a0595bb3aa084d0b7ee9a9f8c5 Reviewed-by: Niels Weber Reviewed-by: Karsten Heimrich Reviewed-by: Tim Jenssen --- installerfw.pri | 2 ++ 1 file changed, 2 insertions(+) (limited to 'installerfw.pri') diff --git a/installerfw.pri b/installerfw.pri index 0dcc1b5e4..ec7b88fb4 100644 --- a/installerfw.pri +++ b/installerfw.pri @@ -82,12 +82,14 @@ macx:LIBS += -framework Carbon -framework Security isEqual(QT_MAJOR_VERSION, 4) { CONFIG += uitools CONFIG(static, static|shared) { + QTPLUGIN += qico DEFINES += QT_STATIC QT += script network xml } } else { QT += uitools core-private CONFIG(static, static|shared) { + QTPLUGIN += qico QT += concurrent network script xml } } -- cgit v1.2.3