blob: a870eb1158c4ab6fc47e8e8c64cf0e19a8a8cb72 (
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
|
TEMPLATE = app
TARGET = BearerEx
QT += core \
gui \
network
FORMS += sessiondialog.ui \
bearerex.ui \
detailedinfodialog.ui
include(../../common.pri)
#not really a test case but deployment happens same way
CONFIG += testcase
DEPENDPATH += .
INCLUDEPATH += . \
../../src/bearer
# Example headers and sources
HEADERS += bearerex.h \
xqlistwidget.h
SOURCES += bearerex.cpp \
main.cpp \
xqlistwidget.cpp
symbian: {
bearerex.sources = Qtbearer.dll
bearerex.path = /sys/bin
DEPLOYMENT += bearerex
TARGET.CAPABILITY = NetworkServices NetworkControl ReadUserData
}
qtAddLibrary(QtBearer)
|