summaryrefslogtreecommitdiff
path: root/examples/webchannel/chatserver-cpp/chatserver-cpp.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webchannel/chatserver-cpp/chatserver-cpp.pro')
-rw-r--r--examples/webchannel/chatserver-cpp/chatserver-cpp.pro18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/webchannel/chatserver-cpp/chatserver-cpp.pro b/examples/webchannel/chatserver-cpp/chatserver-cpp.pro
new file mode 100644
index 0000000..ce6a3f7
--- /dev/null
+++ b/examples/webchannel/chatserver-cpp/chatserver-cpp.pro
@@ -0,0 +1,18 @@
+TARGET = chatserver
+
+TEMPLATE = app
+
+QT += core websockets webchannel
+QT -= gui
+
+CONFIG += console
+
+SOURCES += main.cpp \
+ chatserver.cpp \
+ ../shared/websocketclientwrapper.cpp \
+ ../shared/websockettransport.cpp
+
+HEADERS += \
+ chatserver.h \
+ ../shared/websocketclientwrapper.h \
+ ../shared/websockettransport.h