summaryrefslogtreecommitdiffstats
path: root/tools/qml/qml.pri
blob: c48e919fe596688df92a7bf63921bb55c6e2cc44 (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
QT += declarative script network sql
contains(QT_CONFIG, opengl) {
    QT += opengl
    DEFINES += GL_SUPPORTED
}

INCLUDEPATH += $$PWD

HEADERS += $$PWD/qmlruntime.h \
           $$PWD/proxysettings.h \
           $$PWD/qdeclarativetester.h \
           $$PWD/deviceorientation.h \
           $$PWD/qdeclarativefolderlistmodel.h
SOURCES += $$PWD/qmlruntime.cpp \
           $$PWD/proxysettings.cpp \
           $$PWD/qdeclarativetester.cpp \
           $$PWD/qdeclarativefolderlistmodel.cpp

RESOURCES = $$PWD/qmlruntime.qrc
maemo5 {
    SOURCES += $$PWD/deviceorientation_maemo.cpp
} else {
    SOURCES += $$PWD/deviceorientation.cpp
}
FORMS = $$PWD/recopts.ui \
        $$PWD/proxysettings.ui

include(../shared/deviceskin/deviceskin.pri)