summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorRafael Roquetto <rafael.roquetto.qnx@kdab.com>2012-07-27 14:45:15 (GMT)
committerQt by Nokia <qt-info@nokia.com>2012-07-30 17:56:38 (GMT)
commitd26e67132e70d70f03bde59879979618550ef2bc (patch)
treec6090f24e65244ea788362f2da69e009cc619fb6 /tools/configure/configureapp.cpp
parent2846f98c47b395cb3e847cd3b711c849242111cc (diff)
downloadQt-d26e67132e70d70f03bde59879979618550ef2bc.zip
Qt-d26e67132e70d70f03bde59879979618550ef2bc.tar.gz
Qt-d26e67132e70d70f03bde59879979618550ef2bc.tar.bz2
Add defaults for Blackberry platform on configure
Adds default values for Blackbery platform configuration on configure.exe. Change-Id: I11e4f7135d88fcc6133194d6a82863ae494c8c82 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 50c7c66..2fea99c 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1693,6 +1693,31 @@ void Configure::applySpecSpecifics()
dictionary[ "QT_ICONV" ] = "no";
dictionary["DECORATIONS"] = "default windows styled";
+ } else if (dictionary[ "XQMAKESPEC" ].contains("blackberry")) { //TODO actually wrong.
+ dictionary[ "STYLE_WINDOWSXP" ] = "no";
+ dictionary[ "STYLE_WINDOWSVISTA" ] = "no";
+ dictionary[ "STYLE_WINDOWSCE" ] = "no";
+ dictionary[ "STYLE_WINDOWSMOBILE" ] = "no";
+ dictionary[ "STYLE_S60" ] = "no";
+ dictionary[ "SSE" ] = "no";
+ dictionary[ "SSE2" ] = "no";
+ dictionary[ "MMX" ] = "no";
+ dictionary[ "IWMMXT" ] = "no";
+ dictionary[ "CE_CRT" ] = "no";
+ dictionary[ "PHONON" ] = "no";
+ dictionary[ "NIS" ] = "no";
+ dictionary[ "QT_CUPS" ] = "no";
+ dictionary[ "WEBKIT" ] = "no";
+ dictionary[ "ACCESSIBILITY" ] = "no";
+ dictionary[ "POSIX_IPC" ] = "yes";
+ dictionary[ "QPA" ] = "yes";
+ dictionary[ "QT_ICONV" ] = "yes";
+ dictionary[ "LITTLE_ENDIAN" ] = "yes";
+ dictionary[ "LARGE_FILE" ] = "yes";
+ dictionary[ "XMLPATTERNS" ] = "yes";
+ dictionary[ "FONT_CONFIG" ] = "yes";
+ dictionary[ "FONT_CONFIG" ] = "yes";
+ dictionary[ "FREETYPE" ] = "system";
}
}