aboutsummaryrefslogtreecommitdiffstats
path: root/examples/coap/quicksecureclient/quicksecureclient.pro
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2019-03-28 11:23:41 +0100
committerSona Kurazyan <sona.kurazyan@qt.io>2019-04-17 08:05:25 +0000
commit637b228a380d9f5a4a2a2f85fb487b32127076cb (patch)
tree114928d309969ff3cd7ebf9e1cf450fd6cefa568 /examples/coap/quicksecureclient/quicksecureclient.pro
parentf633087e26592c0b5e4a10d3895e03c267823a4f (diff)
Add secure CoAP client example
This example demonstrates sending secure CoAP GET requests in PreSharedKey and Certificate modes. Change-Id: I90ea8c77232bfca1ca86bdd7a73223b6ba8b0c9b Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples/coap/quicksecureclient/quicksecureclient.pro')
-rw-r--r--examples/coap/quicksecureclient/quicksecureclient.pro21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/coap/quicksecureclient/quicksecureclient.pro b/examples/coap/quicksecureclient/quicksecureclient.pro
new file mode 100644
index 0000000..52fcea9
--- /dev/null
+++ b/examples/coap/quicksecureclient/quicksecureclient.pro
@@ -0,0 +1,21 @@
+TEMPLATE = app
+
+QT += qml quick coap
+CONFIG += c++11
+
+DEFINES += QT_DEPRECATED_WARNINGS
+
+HEADERS += \
+ qmlcoapsecureclient.h
+
+SOURCES += \
+ main.cpp \
+ qmlcoapsecureclient.cpp
+
+DISTFILES += \
+ FilePicker.qml
+
+RESOURCES += qml.qrc
+
+target.path = $$[QT_INSTALL_EXAMPLES]/coap/quicksecureclient
+INSTALLS += target