qt5base-lts/tests/auto/network/ssl/qsslsocket/qsslsocket.pro
Oswald Buddenhagen 5e2367aaa5 use regular configure mechanism for openssl library references
don't attempt to hand-craft a library export any more. instead, use the
configure system's built-in mechanism, and refer to it via QMAKE_USE.
this also allows us to rely on transitive dependencies in the autotest.

as a side effect, this makes the openssl-linked feature imply the
openssl one.

Change-Id: I5dd209b63bc8fbbc62852f6ffc472d4452ea2e68
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
2017-02-22 07:45:59 +00:00

20 lines
313 B
Prolog

CONFIG += testcase
SOURCES += tst_qsslsocket.cpp
win32:LIBS += -lws2_32
QT = core core-private network-private testlib
TARGET = tst_qsslsocket
win32 {
CONFIG(debug, debug|release) {
DESTDIR = debug
} else {
DESTDIR = release
}
}
DEFINES += SRCDIR=\\\"$$PWD/\\\"
requires(qtConfig(private_tests))