blob: 9d68ef916c0a61d01f7eef9114be4e3ca68f661e (
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
|
load(qttest_p4)
SOURCES += ../tst_qtcpserver.cpp
win32: {
wince*: {
LIBS += -lws2
crashApp.files = ../crashingServer/crashingServer.exe
crashApp.path = crashingServer
DEPLOYMENT += crashApp
} else {
LIBS += -lws2_32
}
}
symbian {
crashApp.files = $$QT_BUILD_TREE/examples/widgets/wiggly/$${BUILD_DIR}/crashingServer.exe
crashApp.path = .
DEPLOYMENT += crashApp
TARGET.CAPABILITY += NetworkServices ReadUserData
}
TARGET = ../tst_qtcpserver
win32 {
CONFIG(debug, debug|release) {
TARGET = ../../debug/tst_qtcpserver
} else {
TARGET = ../../release/tst_qtcpserver
}
}
QT = core network
MOC_DIR=tmp
mac*|win32:CONFIG+=insignificant_test # QTQAINFRA-428
|