summaryrefslogtreecommitdiff
path: root/src/websockets/websockets.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/websockets/websockets.pro')
-rw-r--r--src/websockets/websockets.pro52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/websockets/websockets.pro b/src/websockets/websockets.pro
deleted file mode 100644
index 87eecc5..0000000
--- a/src/websockets/websockets.pro
+++ /dev/null
@@ -1,52 +0,0 @@
-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)