[561] | 1 | TARGET = QtXmlPatterns
|
---|
[166] | 2 | os2:TARGET_SHORT = QtXmlP
|
---|
[561] | 3 | QPRO_PWD = $$PWD
|
---|
| 4 | QT = core \
|
---|
| 5 | network
|
---|
| 6 | DEFINES += QT_BUILD_XMLPATTERNS_LIB \
|
---|
| 7 | QT_NO_USING_NAMESPACE
|
---|
[2] | 8 | win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x61000000
|
---|
[561] | 9 | unix:QMAKE_PKGCONFIG_REQUIRES = QtCore \
|
---|
| 10 | QtNetwork
|
---|
[2] | 11 | include(../qbase.pri)
|
---|
| 12 | PRECOMPILED_HEADER = ../corelib/global/qt_pch.h
|
---|
| 13 | include($$PWD/common.pri)
|
---|
| 14 | include($$PWD/acceltree/acceltree.pri)
|
---|
| 15 | include($$PWD/api/api.pri)
|
---|
| 16 | include($$PWD/data/data.pri)
|
---|
| 17 | include($$PWD/environment/environment.pri)
|
---|
| 18 | include($$PWD/expr/expr.pri)
|
---|
| 19 | include($$PWD/functions/functions.pri)
|
---|
| 20 | include($$PWD/iterators/iterators.pri)
|
---|
| 21 | include($$PWD/janitors/janitors.pri)
|
---|
| 22 | include($$PWD/parser/parser.pri)
|
---|
| 23 | include($$PWD/projection/projection.pri)
|
---|
[561] | 24 | include($$PWD/schema/schema.pri)
|
---|
[2] | 25 | include($$PWD/type/type.pri)
|
---|
| 26 | include($$PWD/utils/utils.pri)
|
---|
[561] | 27 | include($$PWD/qobjectmodel/qobjectmodel.pri, "", true)
|
---|
[2] | 28 |
|
---|
[769] | 29 | wince* {
|
---|
| 30 | # The Microsoft MIPS compiler crashes if /Og is specified.
|
---|
| 31 | # -O2/1 expands to /Og plus additional arguments.
|
---|
| 32 | contains(DEFINES, MIPS) {
|
---|
| 33 | QMAKE_CXXFLAGS_RELEASE ~= s/-O2/-Oi -Ot -Oy -Ob2/
|
---|
| 34 | QMAKE_CXXFLAGS_RELEASE ~= s/-O1/-Os -Oy -Ob2/
|
---|
| 35 | }
|
---|
[2] | 36 | }
|
---|
[769] | 37 |
|
---|
|
---|