summaryrefslogtreecommitdiffstats
path: root/src/plugins/bearer/symbian/symbian.pro
blob: 4f1e51cacc156844f30f3f7d0713d91114d3a503 (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
41
TARGET = qsymbianbearer
include(../../qpluginbase.pri)

QT += network

HEADERS += symbianengine.h \
           qnetworksession_impl.h

SOURCES += symbianengine.cpp \
           qnetworksession_impl.cpp \
           main.cpp

symbian {
    TARGET.UID3=0x20021319
    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