aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlmodels
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2021-01-15 13:37:58 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2021-01-15 15:34:22 +0100
commit78ab4b8d8b75fed240cded1a3f182048e56a8823 (patch)
tree96cdc6b049a1f8330648134eecfe74b75be28350 /src/qmlmodels
parentbd017c18ab1faa6011db12afadade74172e03de7 (diff)
Remove the qmake project files
Remove all qmake project files, except for examples which are used to test that qmake continues to work. Change-Id: Ic4abb72dc2dcd75df7a797c56056b6b3c5fe62ac Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qmlmodels')
-rw-r--r--src/qmlmodels/qmlmodels.pro72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/qmlmodels/qmlmodels.pro b/src/qmlmodels/qmlmodels.pro
deleted file mode 100644
index 34380ee14e..0000000000
--- a/src/qmlmodels/qmlmodels.pro
+++ /dev/null
@@ -1,72 +0,0 @@
-TARGET = QtQmlModels
-QT = core-private qml-private
-
-QMAKE_DOCS = $$PWD/doc/qtqmlmodels.qdocconf
-
-DEFINES += QT_NO_URL_CAST_FROM_STRING QT_NO_INTEGER_EVENT_COORDINATES QT_NO_FOREACH
-
-HEADERS += \
- $$PWD/qqmlchangeset_p.h \
- $$PWD/qqmlmodelsmodule_p.h \
- $$PWD/qtqmlmodelsglobal_p.h \
- $$PWD/qtqmlmodelsglobal.h
-
-SOURCES += \
- $$PWD/qqmlchangeset.cpp
-
-qtConfig(qml-object-model) {
- SOURCES += \
- $$PWD/qqmlinstantiator.cpp \
- $$PWD/qqmlobjectmodel.cpp
-
- HEADERS += \
- $$PWD/qqmlinstantiator_p.h \
- $$PWD/qqmlinstantiator_p_p.h \
- $$PWD/qqmlobjectmodel_p.h
-}
-
-qtConfig(qml-table-model) {
- SOURCES += \
- $$PWD/qqmltableinstancemodel.cpp
-
- HEADERS += \
- $$PWD/qqmltableinstancemodel_p.h
-}
-
-qtConfig(qml-list-model) {
- SOURCES += \
- $$PWD/qqmllistmodel.cpp \
- $$PWD/qqmllistmodelworkeragent.cpp
-
- HEADERS += \
- $$PWD/qqmllistmodel_p.h \
- $$PWD/qqmllistmodel_p_p.h \
- $$PWD/qqmllistmodelworkeragent_p.h
-}
-
-qtConfig(qml-delegate-model) {
- SOURCES += \
- $$PWD/qqmlabstractdelegatecomponent.cpp \
- $$PWD/qqmladaptormodel.cpp \
- $$PWD/qqmldelegatemodel.cpp \
- $$PWD/qqmllistaccessor.cpp \
- $$PWD/qqmllistcompositor.cpp \
- $$PWD/qquickpackage.cpp
-
- HEADERS += \
- $$PWD/qqmlabstractdelegatecomponent_p.h \
- $$PWD/qqmladaptormodel_p.h \
- $$PWD/qqmldelegatemodel_p.h \
- $$PWD/qqmldelegatemodel_p_p.h \
- $$PWD/qqmllistaccessor_p.h \
- $$PWD/qqmllistcompositor_p.h \
- $$PWD/qquickpackage_p.h
-}
-
-QMLTYPES_FILENAME = plugins.qmltypes
-QMLTYPES_INSTALL_DIR = $$[QT_INSTALL_QML]/QtQml/Models
-QML_IMPORT_NAME = QtQml.Models
-QML_IMPORT_VERSION = $$QT_VERSION
-CONFIG += qmltypes install_qmltypes install_metatypes
-
-load(qt_module)