aboutsummaryrefslogtreecommitdiffstats
path: root/src/webchannel
diff options
context:
space:
mode:
authorØystein Heskestad <oystein.heskestad@qt.io>2021-07-16 16:44:02 +0200
committerØystein Heskestad <oystein.heskestad@qt.io>2021-07-19 12:49:54 +0200
commitf9784a8613d9c6a061abbb1bbb6cfbb55bb919e2 (patch)
tree32ebf1940079d4e136f0a52dd031b6b4e440ce20 /src/webchannel
parent76f8ac305b4363d4e56aa22eed68e9019b2da356 (diff)
Remove outdated qmake pro-files
Task-number: QTBUG-95167 Change-Id: I199e41cd2bd582b3f4d47b6d516fa2f506f93855 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/webchannel')
-rw-r--r--src/webchannel/webchannel.pro49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/webchannel/webchannel.pro b/src/webchannel/webchannel.pro
deleted file mode 100644
index 00e75f5..0000000
--- a/src/webchannel/webchannel.pro
+++ /dev/null
@@ -1,49 +0,0 @@
-TARGET = QtWebChannel
-QT = core-private
-CONFIG += warn_on strict_flags
-
-QMAKE_DOCS = $$PWD/doc/qtwebchannel.qdocconf
-
-RESOURCES += \
- resources.qrc
-
-QTQUICK_COMPILER_SKIPPED_RESOURCES += \
- resources.qrc
-
-OTHER_FILES = \
- qwebchannel.js
-
-PUBLIC_HEADERS += \
- qwebchannel.h \
- qwebchannelabstracttransport.h
-
-PRIVATE_HEADERS += \
- qwebchannel_p.h \
- qmetaobjectpublisher_p.h \
- variantargument_p.h \
- signalhandler_p.h
-
-SOURCES += \
- qwebchannel.cpp \
- qmetaobjectpublisher.cpp \
- qwebchannelabstracttransport.cpp
-
-qtHaveModule(qml) {
- QT += qml
-
- SOURCES += \
- qqmlwebchannel.cpp \
- qqmlwebchannelattached.cpp
-
- PUBLIC_HEADERS += \
- qqmlwebchannel.h
-
- PRIVATE_HEADERS += \
- qqmlwebchannelattached_p.h
-} else {
- DEFINES += QT_NO_JSVALUE
-}
-
-HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS
-
-load(qt_module)