blob: f915570d510120a2ca7b9e35363401aad8df101f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
TARGET = qsymbianbearer
include(../../qpluginbase.pri)
QT += network
HEADERS += symbianengine.h \
qnetworksession_impl.h
SOURCES += symbianengine.cpp \
qnetworksession_impl.cpp \
main.cpp
symbian {
exists($${EPOCROOT}epoc32/release/winscw/udeb/cmmanager.lib)| \
exists($${EPOCROOT}epoc32/release/armv5/lib/cmmanager.lib) {
message("Building with SNAP support")
DEFINES += SNAP_FUNCTIONALITY_AVAILABLE
LIBS += -lcmmanager
} else {
message("Building without SNAP support")
LIBS += -lapengine
}
}
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
symbian-abld:INCLUDEPATH += $$QT_BUILD_TREE/include/QtNetwork/private
LIBS += -lcommdb \
-lapsettingshandlerui \
-lconnmon \
-lcentralrepository \
-lesock \
-linsock \
-lecom \
-lefsrv \
-lnetmeta
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer
target.path += $$[QT_INSTALL_PLUGINS]/bearer
INSTALLS += target
|