aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorØystein Heskestad <oystein.heskestad@qt.io>2021-07-16 16:38:36 +0200
committerØystein Heskestad <oystein.heskestad@qt.io>2021-07-20 16:56:45 +0200
commitfe5d73ed59658aca9510b97397fad6e81c4ac734 (patch)
tree80b2284eb3dea3ee4daaf868c9f69ac94cf02d71 /src
parent99ee94bfb365ff5a635a0efad81e7cb194c0ddf3 (diff)
Remove outdated qmake pro-files
Task-number: QTBUG-95167 Change-Id: I32f5c1f9d3a1a7cfd1c7ceea6a887418789bc63a Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/imports/imports.pro3
-rw-r--r--src/imports/qmlwebsockets/qmlwebsockets.pro17
-rw-r--r--src/src.pro5
-rw-r--r--src/websockets/websockets.pro52
4 files changed, 0 insertions, 77 deletions
diff --git a/src/imports/imports.pro b/src/imports/imports.pro
deleted file mode 100644
index 6bf8069..0000000
--- a/src/imports/imports.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-TEMPLATE = subdirs
-
-SUBDIRS += qmlwebsockets
diff --git a/src/imports/qmlwebsockets/qmlwebsockets.pro b/src/imports/qmlwebsockets/qmlwebsockets.pro
deleted file mode 100644
index c058918..0000000
--- a/src/imports/qmlwebsockets/qmlwebsockets.pro
+++ /dev/null
@@ -1,17 +0,0 @@
-QT = websockets qml-private core-private
-
-TARGETPATH = QtWebSockets
-
-HEADERS += qmlwebsockets_plugin.h \
- qqmlwebsocket.h \
- qqmlwebsocketserver.h
-
-SOURCES += qmlwebsockets_plugin.cpp \
- qqmlwebsocket.cpp \
- qqmlwebsocketserver.cpp
-
-OTHER_FILES += qmldir
-
-IMPORT_VERSION = 1.$$QT_MINOR_VERSION
-
-load(qml_plugin)
diff --git a/src/src.pro b/src/src.pro
deleted file mode 100644
index ad1b0c7..0000000
--- a/src/src.pro
+++ /dev/null
@@ -1,5 +0,0 @@
-TEMPLATE = subdirs
-CONFIG += ordered
-
-SUBDIRS += websockets
-qtHaveModule(quick): SUBDIRS += imports
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)