source: trunk/tools/qml/qml.pro@ 1039

Last change on this file since 1039 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 1.1 KB
Line 
1TEMPLATE = app
2CONFIG += qt uic
3DESTDIR = ../../bin
4
5include(qml.pri)
6
7SOURCES += main.cpp
8
9INCLUDEPATH += ../../include/QtDeclarative
10INCLUDEPATH += ../../src/declarative/util
11INCLUDEPATH += ../../src/declarative/graphicsitems
12
13target.path = $$[QT_INSTALL_BINS]
14INSTALLS += target
15
16wince* {
17 QT += xml
18
19 contains(QT_CONFIG, scripttools) {
20 QT += scripttools
21 }
22 contains(QT_CONFIG, phonon) {
23 QT += phonon
24 }
25 contains(QT_CONFIG, xmlpatterns) {
26 QT += xmlpatterns
27 }
28 contains(QT_CONFIG, webkit) {
29 QT += webkit
30 }
31}
32maemo5 {
33 QT += maemo5
34}
35symbian {
36 TARGET.UID3 = 0x20021317
37 include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
38 TARGET.EPOCHEAPSIZE = 0x20000 0x4000000
39 TARGET.CAPABILITY = NetworkServices ReadUserData
40
41 # Deploy plugin for remote debugging
42 qmldebuggingplugin.sources = $$QT_BUILD_TREE/plugins/qmltooling/tcpserver$${QT_LIBINFIX}.dll
43 qmldebuggingplugin.path = c:$$QT_PLUGINS_BASE_DIR/qmltooling
44 DEPLOYMENT += qmldebuggingplugin
45}
46mac {
47 QMAKE_INFO_PLIST=Info_mac.plist
48 TARGET=QMLViewer
49 ICON=qml.icns
50} else {
51 TARGET=qmlviewer
52}
Note: See TracBrowser for help on using the repository browser.