diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-05 10:25:45 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-02-05 10:25:45 (GMT) |
commit | f30d3602011780e598e6b55c69d0b40a9cc94e16 (patch) | |
tree | 12449eb61dc1f119d9254198979ec51295fa9151 /src/declarative/declarative.pro | |
parent | 349e9189e205c3dfdef271798310d1f38163b891 (diff) | |
parent | 1f221f04afb2fc8a1426d30f77f3e6026fdbdab7 (diff) | |
download | Qt-f30d3602011780e598e6b55c69d0b40a9cc94e16.zip Qt-f30d3602011780e598e6b55c69d0b40a9cc94e16.tar.gz Qt-f30d3602011780e598e6b55c69d0b40a9cc94e16.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/qt-qml: (3324 commits)
Fix test.
Remove hacky fix (breaks autotest).
Fix Behaviors for object-type properties.
Pass symbols::prefix (Action -> QmlAction)
Add license header.
Fix bad merge (compile)
Pass tst_headers::licenseCheck
Fix ListView tests.
Test fixes.
More test fixes.
Clean up QmlImageReader thread on engine destruction.
Update test to handle QmlNetworkAccessManagerFactory
Test fixes.
Add a QEXPECT_FAIL for known bug.
Fix autotest.
Add some painting benchmarks.
Make sure cookies are saved.
Fix headers::licenseCheck autotest failure
Re-add accidentally deleted file
Test SizeItemToLoader to SizeLoaderToItem resizeMode change.
...
Diffstat (limited to 'src/declarative/declarative.pro')
-rw-r--r-- | src/declarative/declarative.pro | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/declarative/declarative.pro b/src/declarative/declarative.pro new file mode 100644 index 0000000..86a0370 --- /dev/null +++ b/src/declarative/declarative.pro @@ -0,0 +1,30 @@ +TARGET = QtDeclarative +QPRO_PWD = $$PWD +QT = core gui xml script network +contains(QT_CONFIG, svg): QT += svg +contains(QT_CONFIG, opengl): QT += opengl +DEFINES += QT_BUILD_DECLARATIVE_LIB QT_NO_URL_CAST_FROM_STRING +win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x66000000 +solaris-cc*:QMAKE_CXXFLAGS_RELEASE -= -O2 + +unix:QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui QtXml + +exists("qml_enable_gcov") { + QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage -fno-elide-constructors + LIBS += -lgcov +} + +include(../qbase.pri) + +#INCLUDEPATH -= $$QMAKE_INCDIR_QT/$$TARGET +#DESTDIR=. + +#modules +include(3rdparty/3rdparty.pri) +include(util/util.pri) +include(graphicsitems/graphicsitems.pri) +include(qml/qml.pri) +include(widgets/widgets.pri) +include(debugger/debugger.pri) + +symbian:TARGET.UID3=0x2001E623 |