summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-05-17 10:45:43 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-05-19 11:06:33 +0000
commiteff3a7ded138e5f73fe716efae9e4bf74c71a8a4 (patch)
treea4a56fdc1b3eae47334efa0a1d338ffb71662469 /tools
parent6086c81e4d999d88ce4d412a20d250a219ab3c2c (diff)
delay application of -D/-I/-L/-l on windows as well
clearly, "the windows configure does not have any of this magic to start with" was flat-out wrong. Task-number: QTBUG-53312 Change-Id: I80ac10bc8b1581e61c57fcd97f25626990d120ec Reviewed-by: Konstantin Tokarev <annulen@yandex.ru> Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index a03be4df0a..0909ff8aab 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -2987,7 +2987,7 @@ void Configure::generateOutputVars()
qtConfig += "accessibility";
if (!qmakeLibs.isEmpty())
- qmakeVars += "LIBS += " + formatPaths(qmakeLibs);
+ qmakeVars += "EXTRA_LIBS += " + formatPaths(qmakeLibs);
if (!dictionary["QT_LFLAGS_SQLITE"].isEmpty())
qmakeVars += "QT_LFLAGS_SQLITE += " + dictionary["QT_LFLAGS_SQLITE"];
@@ -3105,9 +3105,9 @@ void Configure::generateOutputVars()
qtConfig += "rpath";
if (!qmakeDefines.isEmpty())
- qmakeVars += QString("DEFINES += ") + qmakeDefines.join(' ');
+ qmakeVars += QString("EXTRA_DEFINES += ") + qmakeDefines.join(' ');
if (!qmakeIncludes.isEmpty())
- qmakeVars += QString("INCLUDEPATH += ") + formatPaths(qmakeIncludes);
+ qmakeVars += QString("EXTRA_INCLUDEPATH += ") + formatPaths(qmakeIncludes);
if (!opensslLibs.isEmpty())
qmakeVars += opensslLibs;
if (dictionary[ "OPENSSL" ] == "linked") {