File: echoserver.pro

package info (click to toggle)
qtwebsockets-opensource-src 5.11.3-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,864 kB
  • sloc: cpp: 8,852; makefile: 34; ansic: 21
file content (20 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
QT       += core websockets
QT       -= gui

TARGET = echoserver
CONFIG   += console
CONFIG   -= app_bundle

TEMPLATE = app

SOURCES += \
    main.cpp \
    echoserver.cpp

HEADERS += \
    echoserver.h

EXAMPLE_FILES += echoclient.html

target.path = $$[QT_INSTALL_EXAMPLES]/websockets/echoserver
INSTALLS += target