blob: 645b061bc161f47c5689561d3412a81852ede04c (
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
|
load(qttest_p4)
SOURCES += tst_qnetworksession.cpp
HEADERS += ../../qbearertestcommon.h
QT = core network
TARGET = tst_qnetworksession
CONFIG(debug_and_release) {
CONFIG(debug, debug|release) {
DESTDIR = ../debug
} else {
DESTDIR = ../release
}
} else {
DESTDIR = ..
}
symbian {
TARGET.CAPABILITY = NetworkServices NetworkControl ReadUserData PowerMgmt
}
maemo6|maemo5 {
CONFIG += link_pkgconfig
PKGCONFIG += conninet
}
CONFIG+=insignificant_test # QTQAINFRA-428
|