diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-04-19 19:18:41 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-04-20 09:08:32 (GMT) |
commit | 510024019ab3b136fe76f446a7d325f998dfd35a (patch) | |
tree | d5efb69b0898c8589ec5097ff0dc6c07625fa4d3 /src/xmlpatterns/xmlpatterns.pro | |
parent | aac0e0a8276b34e9193fed457b13d5832b814276 (diff) | |
download | Qt-510024019ab3b136fe76f446a7d325f998dfd35a.zip Qt-510024019ab3b136fe76f446a7d325f998dfd35a.tar.gz Qt-510024019ab3b136fe76f446a7d325f998dfd35a.tar.bz2 |
fix qmake conditionals
Reviewed-by: maurice
Diffstat (limited to 'src/xmlpatterns/xmlpatterns.pro')
-rw-r--r-- | src/xmlpatterns/xmlpatterns.pro | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/xmlpatterns/xmlpatterns.pro b/src/xmlpatterns/xmlpatterns.pro index a224762..e50d184 100644 --- a/src/xmlpatterns/xmlpatterns.pro +++ b/src/xmlpatterns/xmlpatterns.pro @@ -24,13 +24,14 @@ include($$PWD/schema/schema.pri) include($$PWD/type/type.pri) include($$PWD/utils/utils.pri) include($$PWD/qobjectmodel/qobjectmodel.pri, "", true) -wince*:# The Microsoft MIPS compiler crashes if /Og is specified -: -# -O2/1 expands to /Og plus additional arguments. -contains(DEFINES, MIPS): { - QMAKE_CXXFLAGS_RELEASE ~= s/-O2/-Oi -Ot -Oy -Ob2/ - QMAKE_CXXFLAGS_RELEASE ~= s/-O1/-Os -Oy -Ob2/ +wince* { + # The Microsoft MIPS compiler crashes if /Og is specified. + # -O2/1 expands to /Og plus additional arguments. + contains(DEFINES, MIPS) { + QMAKE_CXXFLAGS_RELEASE ~= s/-O2/-Oi -Ot -Oy -Ob2/ + QMAKE_CXXFLAGS_RELEASE ~= s/-O1/-Os -Oy -Ob2/ + } } + symbian:TARGET.UID3 = 0x2001E62B -HEADERS += |