blob: c29fc68ed286d1f960106ad14932a84f919a02ed (
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_qsslsocket.cpp
!wince*:win32:LIBS += -lws2_32
QT += network
QT -= gui
TARGET = tst_qsslsocket
!wince* {
DEFINES += SRCDIR=\\\"$$PWD/\\\"
} else {
DEFINES += SRCDIR=\\\"./\\\"
}
win32 {
CONFIG(debug, debug|release) {
DESTDIR = debug
} else {
DESTDIR = release
}
}
wince*: {
certFiles.sources = certs ssl.tar.gz
certFiles.path = .
DEPLOYMENT += certFiles
}
|