2010-07-08 14:00:33 +02:00
|
|
|
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 \
|
2010-11-11 10:50:06 +01:00
|
|
|
$$PWD/loggerwidget.h
|
2010-07-08 14:00:33 +02:00
|
|
|
SOURCES += $$PWD/qmlruntime.cpp \
|
|
|
|
|
$$PWD/proxysettings.cpp \
|
|
|
|
|
$$PWD/qdeclarativetester.cpp \
|
2010-11-11 10:50:06 +01:00
|
|
|
$$PWD/loggerwidget.cpp
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-12-10 12:27:33 +01:00
|
|
|
RESOURCES = $$PWD/browser/browser.qrc \
|
|
|
|
|
$$PWD/startup/startup.qrc
|
2010-07-30 11:48:05 +02:00
|
|
|
|
2012-08-22 13:27:25 +02:00
|
|
|
maemo5 {
|
2010-07-08 14:00:33 +02:00
|
|
|
QT += dbus
|
|
|
|
|
HEADERS += $$PWD/texteditautoresizer_maemo5.h
|
|
|
|
|
SOURCES += $$PWD/deviceorientation_maemo5.cpp
|
2010-12-10 12:27:33 +01:00
|
|
|
FORMS = $$PWD/recopts_maemo5.ui \
|
2010-07-08 14:00:33 +02:00
|
|
|
$$PWD/proxysettings_maemo5.ui
|
2010-12-10 12:27:33 +01:00
|
|
|
} else:linux-g++-maemo {
|
|
|
|
|
QT += dbus
|
|
|
|
|
SOURCES += $$PWD/deviceorientation_harmattan.cpp
|
|
|
|
|
FORMS = $$PWD/recopts.ui \
|
|
|
|
|
$$PWD/proxysettings.ui
|
2010-07-08 14:00:33 +02:00
|
|
|
} else {
|
|
|
|
|
SOURCES += $$PWD/deviceorientation.cpp
|
2010-12-10 12:27:33 +01:00
|
|
|
FORMS = $$PWD/recopts.ui \
|
|
|
|
|
$$PWD/proxysettings.ui
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|