diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-14 09:46:53 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-14 09:46:53 (GMT) |
commit | a8ba5e3a0909de536a2793a522749a3c0c42525e (patch) | |
tree | b91d05e1ee2ce03bef6c460db88a9b9d55f542e9 /tools/qml/qml.pri | |
parent | 9ae50ce40c1bc571c867bc698f2c53839c2c6932 (diff) | |
download | Qt-a8ba5e3a0909de536a2793a522749a3c0c42525e.zip Qt-a8ba5e3a0909de536a2793a522749a3c0c42525e.tar.gz Qt-a8ba5e3a0909de536a2793a522749a3c0c42525e.tar.bz2 |
Remove dead wgt support from qml runtime
Diffstat (limited to 'tools/qml/qml.pri')
-rw-r--r-- | tools/qml/qml.pri | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/qml/qml.pri b/tools/qml/qml.pri new file mode 100644 index 0000000..c48e919 --- /dev/null +++ b/tools/qml/qml.pri @@ -0,0 +1,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) + |