summaryrefslogtreecommitdiffstats
path: root/examples/scxml/ftpclient/ftpclient.pro
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-09-09 17:20:25 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-09-23 14:50:43 +0000
commitb83922861ce7214eb5a2b192ab040c3cc8a42a96 (patch)
tree91f9bae965e1d839cbedd10d15141fa5074669b9 /examples/scxml/ftpclient/ftpclient.pro
parent68ec3971e9f826dc16c0c4638f586347af5389c3 (diff)
Add a simple FTP client example
With the provided FTP client you can fetch text files via anonymous FTP. Change-Id: I622264d72aac71492bf474dc1936917fdc78d499 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'examples/scxml/ftpclient/ftpclient.pro')
-rw-r--r--examples/scxml/ftpclient/ftpclient.pro19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/scxml/ftpclient/ftpclient.pro b/examples/scxml/ftpclient/ftpclient.pro
new file mode 100644
index 0000000..7aa266e
--- /dev/null
+++ b/examples/scxml/ftpclient/ftpclient.pro
@@ -0,0 +1,19 @@
+QT = core scxml
+
+CONFIG += c++14
+TARGET = ftpclient
+
+TEMPLATE = app
+STATECHARTS += simpleftp.scxml
+
+SOURCES += \
+ main.cpp \
+ ftpcontrolchannel.cpp \
+ ftpdatachannel.cpp
+
+HEADERS += \
+ ftpcontrolchannel.h \
+ ftpdatachannel.h
+
+target.path = $$[QT_INSTALL_EXAMPLES]/scxml/ftpclient
+INSTALLS += target