2010-07-08 14:00:33 +02:00
|
|
|
QT += declarative script network sql
|
2010-07-29 12:15:55 +02:00
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
contains(QT_CONFIG, opengl) {
|
|
|
|
|
QT += opengl
|
|
|
|
|
DEFINES += GL_SUPPORTED
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-06 14:09:07 +02:00
|
|
|
!exists($$[QT_INSTALL_HEADERS]/QtCore/private/qabstractanimation_p.h) {
|
|
|
|
|
DEFINES += NO_PRIVATE_HEADERS
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
|
|
|
|
|
HEADERS += $$PWD/qmlruntime.h \
|
|
|
|
|
$$PWD/proxysettings.h \
|
|
|
|
|
$$PWD/qdeclarativetester.h \
|
|
|
|
|
$$PWD/deviceorientation.h \
|
2010-09-27 17:22:57 +02:00
|
|
|
$$PWD/loggerwidget.h \
|
|
|
|
|
$$PWD/crumblepath.h
|
2010-07-08 14:23:33 +02:00
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
|
SOURCES += $$PWD/qmlruntime.cpp \
|
|
|
|
|
$$PWD/proxysettings.cpp \
|
|
|
|
|
$$PWD/qdeclarativetester.cpp \
|
2010-09-27 17:22:57 +02:00
|
|
|
$$PWD/loggerwidget.cpp \
|
|
|
|
|
$$PWD/crumblepath.cpp
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
|
RESOURCES += $$PWD/qmlruntime.qrc
|
2010-07-29 12:15:55 +02:00
|
|
|
|
2010-07-30 11:48:05 +02:00
|
|
|
OTHER_FILES += toolbarstyle.css
|
|
|
|
|
|
2010-07-08 14:00:33 +02:00
|
|
|
maemo5 {
|
|
|
|
|
QT += dbus
|
|
|
|
|
HEADERS += $$PWD/texteditautoresizer_maemo5.h
|
|
|
|
|
SOURCES += $$PWD/deviceorientation_maemo5.cpp
|
|
|
|
|
FORMS += $$PWD/recopts_maemo5.ui \
|
|
|
|
|
$$PWD/proxysettings_maemo5.ui
|
|
|
|
|
} else {
|
|
|
|
|
SOURCES += $$PWD/deviceorientation.cpp
|
|
|
|
|
FORMS += $$PWD/recopts.ui \
|
|
|
|
|
$$PWD/proxysettings.ui
|
|
|
|
|
}
|