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