summaryrefslogtreecommitdiffstats
path: root/examples/network/multistreamclient/multistreamclient.pro
diff options
context:
space:
mode:
authorAlex Trotsenko <alex1973tr@gmail.com>2014-09-24 17:31:33 +0300
committerAlex Trotsenko <alex1973tr@gmail.com>2016-07-27 06:37:24 +0000
commit75a9bd2a4f637fb8e8e3dc4609a7045547119e80 (patch)
tree73b8a0a950eb87a7407edada3ea6547f08baf328 /examples/network/multistreamclient/multistreamclient.pro
parentc5a4b093d051680bf7f34bb5acff16eea9d4979f (diff)
Introduce SCTP sockets support
Add protocol-specific code and the QSctpServer, QSctpSocket classes. Change-Id: Ie9a1d87bd1fda866a2405043d1c15c12ded5a96e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'examples/network/multistreamclient/multistreamclient.pro')
-rw-r--r--examples/network/multistreamclient/multistreamclient.pro16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/network/multistreamclient/multistreamclient.pro b/examples/network/multistreamclient/multistreamclient.pro
new file mode 100644
index 0000000000..ed887ab53e
--- /dev/null
+++ b/examples/network/multistreamclient/multistreamclient.pro
@@ -0,0 +1,16 @@
+QT += network widgets
+
+HEADERS = client.h \
+ consumer.h \
+ movieconsumer.h \
+ timeconsumer.h \
+ chatconsumer.h
+SOURCES = client.cpp \
+ movieconsumer.cpp \
+ timeconsumer.cpp \
+ chatconsumer.cpp \
+ main.cpp
+
+# install
+target.path = $$[QT_INSTALL_EXAMPLES]/network/multistreamclient
+INSTALLS += target