File: chatserver-cpp.pro

package info (click to toggle)
qtwebchannel-opensource-src 5.15.18-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,168 kB
  • sloc: cpp: 3,298; javascript: 475; makefile: 20; ansic: 14
file content (21 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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

target.path = $$[QT_INSTALL_EXAMPLES]/webchannel/chatserver-cpp
INSTALLS += target