diff options
Diffstat (limited to 'examples/simplechat/simplechat.pro')
-rw-r--r-- | examples/simplechat/simplechat.pro | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/simplechat/simplechat.pro b/examples/simplechat/simplechat.pro new file mode 100644 index 0000000..5cb6d4f --- /dev/null +++ b/examples/simplechat/simplechat.pro @@ -0,0 +1,17 @@ +QT += core websockets +QT -= gui + +TARGET = chatserver +CONFIG += console +CONFIG -= app_bundle + +TEMPLATE = app + +SOURCES += \ + main.cpp \ + chatserver.cpp + +HEADERS += \ + chatserver.h + +OTHER_FILES += *.html |