blob: ce45ed087bfbf4a51ab317fc42b3c27a1a887505 (
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
|
TEMPLATE = app
CONFIG += qt \
uic
DESTDIR = ../../bin
QT += declarative \
script \
network \
sql
contains(QT_CONFIG, opengl) {
QT += opengl
DEFINES += GL_SUPPORTED
}
# Input
HEADERS += qmlviewer.h \
proxysettings.h \
qfxtester.h \
deviceorientation.h
SOURCES += main.cpp \
qmlviewer.cpp \
proxysettings.cpp \
qfxtester.cpp
maemo5 {
SOURCES += deviceorientation_maemo.cpp
} else {
SOURCES += deviceorientation.cpp
}
FORMS = recopts.ui \
proxysettings.ui
INCLUDEPATH += ../../include/QtDeclarative
INCLUDEPATH += ../../src/declarative/util
include(../shared/deviceskin/deviceskin.pri)
target.path = $$[QT_INSTALL_BINS]
INSTALLS += target
wince* {
QT += scripttools \
xml \
xmlpatterns \
webkit \
phonon
}
|