Remove Q_WS_*, symbian and maemo code in QtDeclarative
[profile/ivi/qtdeclarative.git] / tools / qmlviewer / qml.pri
1 QT += core-private gui-private v8-private declarative-private network sql
2 contains(QT_CONFIG, opengl) {
3     QT += opengl
4     DEFINES += GL_SUPPORTED
5 }
6
7 INCLUDEPATH += $$PWD
8
9 HEADERS += $$PWD/qmlruntime.h \
10            $$PWD/proxysettings.h \
11            $$PWD/qdeclarativetester.h \
12            $$PWD/deviceorientation.h \
13            $$PWD/loggerwidget.h
14 SOURCES += $$PWD/qmlruntime.cpp \
15            $$PWD/proxysettings.cpp \
16            $$PWD/qdeclarativetester.cpp \
17            $$PWD/loggerwidget.cpp
18
19 RESOURCES = $$PWD/browser/browser.qrc \
20             $$PWD/startup/startup.qrc
21
22 linux-g++-maemo {
23     QT += dbus
24     SOURCES += $$PWD/deviceorientation_harmattan.cpp
25     FORMS = $$PWD/recopts.ui \
26             $$PWD/proxysettings.ui
27 } else {
28     SOURCES += $$PWD/deviceorientation.cpp
29     FORMS = $$PWD/recopts.ui \
30             $$PWD/proxysettings.ui
31 }
32