Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
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/browser/browser.qrc \
|
|
$$PWD/startup/startup.qrc
|
|
|
|
symbian {
|
|
contains(QT_CONFIG, s60) {
|
|
LIBS += -lavkon -lcone
|
|
}
|
|
!contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
|
|
LIBS += -lsensrvclient -lsensrvutil
|
|
SOURCES += $$PWD/deviceorientation_symbian.cpp
|
|
} else {
|
|
SOURCES += $$PWD/deviceorientation.cpp
|
|
}
|
|
FORMS = $$PWD/recopts.ui \
|
|
$$PWD/proxysettings.ui
|
|
} else:maemo5 {
|
|
QT += dbus
|
|
HEADERS += $$PWD/texteditautoresizer_maemo5.h
|
|
SOURCES += $$PWD/deviceorientation_maemo5.cpp
|
|
FORMS = $$PWD/recopts_maemo5.ui \
|
|
$$PWD/proxysettings_maemo5.ui
|
|
} else:linux-g++-maemo {
|
|
QT += dbus
|
|
SOURCES += $$PWD/deviceorientation_harmattan.cpp
|
|
FORMS = $$PWD/recopts.ui \
|
|
$$PWD/proxysettings.ui
|
|
} else {
|
|
SOURCES += $$PWD/deviceorientation.cpp
|
|
FORMS = $$PWD/recopts.ui \
|
|
$$PWD/proxysettings.ui
|
|
}
|
|
|