summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 8ef10a1c94..45c9f5c063 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -2533,7 +2533,12 @@ void Configure::generateCachefile()
if (!dictionary["DECORATIONS"].isEmpty())
moduleStream << "decorations += "<<dictionary["DECORATIONS"]<<endl;
- moduleStream << "CONFIG += create_prl link_prl" << endl;
+ moduleStream << "CONFIG += create_prl link_prl";
+ if (dictionary[ "SSE2" ] == "yes")
+ moduleStream << " sse2";
+ if (dictionary[ "IWMMXT" ] == "yes")
+ moduleStream << " iwmmxt";
+ moduleStream << endl;
moduleStream.flush();
moduleFile.close();
@@ -2668,10 +2673,6 @@ void Configure::generateQConfigPri()
configStream << " ltcg";
if (dictionary[ "RTTI" ] == "yes")
configStream << " rtti";
- if (dictionary[ "SSE2" ] == "yes")
- configStream << " sse2";
- if (dictionary[ "IWMMXT" ] == "yes")
- configStream << " iwmmxt";
if (dictionary["INCREDIBUILD_XGE"] == "yes")
configStream << " incredibuild_xge";
if (dictionary["PLUGIN_MANIFESTS"] == "no")