From 60277db1647695caf00275fac229abf5a925396c Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 21 Aug 2012 15:22:20 +0200 Subject: [PATCH] Fix compilation with Qt 5 / nmake / shadow builds qmake/qt4 included the source directory automatically for most plugins, which got dropped in qt 5 (change 0f548b1744e2). Make sure it's included again ... Change-Id: Ief06cf9b3c7afd8432df7511df5f917023d477ef Reviewed-by: Oswald Buddenhagen Reviewed-by: Joerg Bornemann Reviewed-by: Friedemann Kleint --- src/qtcreatorplugin.pri | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qtcreatorplugin.pri b/src/qtcreatorplugin.pri index 53ceac018b9..ea0360753be 100644 --- a/src/qtcreatorplugin.pri +++ b/src/qtcreatorplugin.pri @@ -90,6 +90,8 @@ macx { QMAKE_RPATHDIR = } +# put .pro file directory in INCLUDEPATH +CONFIG += include_source_dir contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols