summaryrefslogtreecommitdiffstats
path: root/tools/qml/qml.pri
blob: cff65be9b9b0d8f9bf9822c9d45bbf75de56f0df (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
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/loggerwidget.h
SOURCES += $$PWD/qmlruntime.cpp \
           $$PWD/proxysettings.cpp \
           $$PWD/qdeclarativetester.cpp \
           $$PWD/loggerwidget.cpp

RESOURCES = $$PWD/qmlruntime.qrc
maemo5 {
    SOURCES += $$PWD/deviceorientation_maemo.cpp
} else {
    SOURCES += $$PWD/deviceorientation.cpp
}

FORMS = $$PWD/recopts.ui \
        $$PWD/proxysettings.ui