blob: c6164411c760a1f005a9f4f691c56787395728be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
QT_FOR_CONFIG += network
requires(qtConfig(ssl))
REPC_REPLICA += ../../timemodel.rep
QT = remoteobjects remoteobjects-private core
QT -= gui
TARGET = sslcppclient
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
RESOURCES += \
../sslserver/cert/cert.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/remoteobjects/ssl/sslcppclient
INSTALLS += target
|