blob: 87eecc5ea3970a882cf0f39fd35b832968b2be6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
TARGET = QtWebSockets
QT = core-private network
QMAKE_DOCS = $$PWD/doc/qtwebsockets.qdocconf
OTHER_FILES += doc/src/*.qdoc # show .qdoc files in Qt Creator
OTHER_FILES += doc/snippets/*.cpp
OTHER_FILES += doc/qtwebsockets.qdocconf
PUBLIC_HEADERS += \
$$PWD/qwebsockets_global.h \
$$PWD/qwebsocket.h \
$$PWD/qwebsocketserver.h \
$$PWD/qwebsocketprotocol.h \
$$PWD/qwebsocketcorsauthenticator.h \
$$PWD/qmaskgenerator.h
PRIVATE_HEADERS += \
$$PWD/qwebsocket_p.h \
$$PWD/qwebsocketserver_p.h \
$$PWD/qwebsocketprotocol_p.h \
$$PWD/qwebsockethandshakerequest_p.h \
$$PWD/qwebsockethandshakeresponse_p.h \
$$PWD/qwebsocketdataprocessor_p.h \
$$PWD/qwebsocketcorsauthenticator_p.h \
$$PWD/qwebsocketframe_p.h \
$$PWD/qdefaultmaskgenerator_p.h
SOURCES += \
$$PWD/qwebsocket.cpp \
$$PWD/qwebsocket_p.cpp \
$$PWD/qwebsocketserver.cpp \
$$PWD/qwebsocketserver_p.cpp \
$$PWD/qwebsocketprotocol.cpp \
$$PWD/qwebsockethandshakerequest.cpp \
$$PWD/qwebsockethandshakeresponse.cpp \
$$PWD/qwebsocketdataprocessor.cpp \
$$PWD/qwebsocketcorsauthenticator.cpp \
$$PWD/qwebsocketframe.cpp \
$$PWD/qmaskgenerator.cpp \
$$PWD/qdefaultmaskgenerator_p.cpp
wasm: SOURCES += $$PWD/qwebsocket_wasm_p.cpp
qtConfig(ssl) {
SOURCES += $$PWD/qsslserver.cpp
PRIVATE_HEADERS += $$PWD/qsslserver_p.h
}
HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS
load(qt_module)
|