equal
deleted
inserted
replaced
|
1 QT += declarative script network sql |
|
2 contains(QT_CONFIG, opengl) { |
|
3 QT += opengl |
|
4 DEFINES += GL_SUPPORTED |
|
5 } |
|
6 |
|
7 INCLUDEPATH += $$PWD |
|
8 |
|
9 HEADERS += $$PWD/qmlruntime.h \ |
|
10 $$PWD/proxysettings.h \ |
|
11 $$PWD/qdeclarativetester.h \ |
|
12 $$PWD/deviceorientation.h \ |
|
13 $$PWD/loggerwidget.h |
|
14 SOURCES += $$PWD/qmlruntime.cpp \ |
|
15 $$PWD/proxysettings.cpp \ |
|
16 $$PWD/qdeclarativetester.cpp \ |
|
17 $$PWD/loggerwidget.cpp |
|
18 |
|
19 RESOURCES = $$PWD/qmlruntime.qrc |
|
20 maemo5 { |
|
21 SOURCES += $$PWD/deviceorientation_maemo.cpp |
|
22 } else { |
|
23 SOURCES += $$PWD/deviceorientation.cpp |
|
24 } |
|
25 |
|
26 symbian { |
|
27 INCLUDEPATH += $$QT_SOURCE_TREE/examples/network/qftp/ |
|
28 LIBS += -lesock -lcommdb -lconnmon -linsock |
|
29 } |
|
30 |
|
31 FORMS = $$PWD/recopts.ui \ |
|
32 $$PWD/proxysettings.ui |