source: trunk/tools/qml/qml.pri

Last change on this file was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 1.5 KB
Line 
1QT += declarative script network sql
2contains(QT_CONFIG, opengl) {
3 QT += opengl
4 DEFINES += GL_SUPPORTED
5}
6
7INCLUDEPATH += $$PWD
8
9HEADERS += $$PWD/qmlruntime.h \
10 $$PWD/proxysettings.h \
11 $$PWD/qdeclarativetester.h \
12 $$PWD/deviceorientation.h \
13 $$PWD/loggerwidget.h
14SOURCES += $$PWD/qmlruntime.cpp \
15 $$PWD/proxysettings.cpp \
16 $$PWD/qdeclarativetester.cpp \
17 $$PWD/loggerwidget.cpp
18
19RESOURCES = $$PWD/browser/browser.qrc \
20 $$PWD/startup/startup.qrc
21
22symbian {
23 contains(QT_CONFIG, s60) {
24 LIBS += -lavkon -lcone
25 }
26 !contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
27 LIBS += -lsensrvclient -lsensrvutil
28 }
29 !contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
30 SOURCES += $$PWD/deviceorientation_symbian.cpp
31 FORMS = $$PWD/recopts.ui \
32 $$PWD/proxysettings.ui
33 } else {
34 SOURCES += $$PWD/deviceorientation.cpp
35 FORMS = $$PWD/recopts.ui \
36 $$PWD/proxysettings.ui
37 }
38} else:maemo5 {
39 QT += dbus
40 HEADERS += $$PWD/texteditautoresizer_maemo5.h
41 SOURCES += $$PWD/deviceorientation_maemo5.cpp
42 FORMS = $$PWD/recopts_maemo5.ui \
43 $$PWD/proxysettings_maemo5.ui
44} else:linux-g++-maemo {
45 QT += dbus
46 SOURCES += $$PWD/deviceorientation_harmattan.cpp
47 FORMS = $$PWD/recopts.ui \
48 $$PWD/proxysettings.ui
49} else {
50 SOURCES += $$PWD/deviceorientation.cpp
51 FORMS = $$PWD/recopts.ui \
52 $$PWD/proxysettings.ui
53}
54
Note: See TracBrowser for help on using the repository browser.