d32f47b703
Fix style issues along the way. Change-Id: Ic6a6de28e198eb0b14c198b802e78845703909b9 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
34 lines
627 B
Prolog
34 lines
627 B
Prolog
CONFIG += testcase
|
|
|
|
SOURCES += tst_qsslsocket.cpp
|
|
win32:!wince: LIBS += -lws2_32
|
|
QT = core core-private network-private testlib
|
|
|
|
TARGET = tst_qsslsocket
|
|
|
|
win32 {
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR = debug
|
|
} else {
|
|
DESTDIR = release
|
|
}
|
|
}
|
|
|
|
# OpenSSL support
|
|
contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) {
|
|
# Add optional SSL libs
|
|
LIBS += $$OPENSSL_LIBS
|
|
}
|
|
|
|
wince* {
|
|
DEFINES += SRCDIR=\\\"./\\\"
|
|
|
|
certFiles.files = certs ssl.tar.gz
|
|
certFiles.path = .
|
|
DEPLOYMENT += certFiles
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
}
|
|
|
|
requires(contains(QT_CONFIG,private_tests))
|