aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlplugindump
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlplugindump')
-rw-r--r--tests/auto/qml/qmlplugindump/data/dumper/Dummy/dummy.pro23
-rw-r--r--tests/auto/qml/qmlplugindump/data/dumper/ExtendedType/extendedtype.pro22
-rw-r--r--tests/auto/qml/qmlplugindump/data/dumper/Imports/imports.pro24
-rw-r--r--tests/auto/qml/qmlplugindump/data/dumper/Versions/versions.pro23
-rw-r--r--tests/auto/qml/qmlplugindump/qmlplugindump.pro8
-rw-r--r--tests/auto/qml/qmlplugindump/tst_qmlplugindump.pro9
6 files changed, 0 insertions, 109 deletions
diff --git a/tests/auto/qml/qmlplugindump/data/dumper/Dummy/dummy.pro b/tests/auto/qml/qmlplugindump/data/dumper/Dummy/dummy.pro
deleted file mode 100644
index 9f5bc927b4..0000000000
--- a/tests/auto/qml/qmlplugindump/data/dumper/Dummy/dummy.pro
+++ /dev/null
@@ -1,23 +0,0 @@
-TEMPLATE = lib
-TARGET = Dummy
-QT += qml
-CONFIG += qt plugin
-
-CONFIG -= debug_and_release_target
-!build_pass:qtConfig(debug_and_release): CONFIG += release
-
-TARGET = $$qtLibraryTarget($$TARGET)
-
-SOURCES += \
- dummy_plugin.cpp \
- dummy.cpp
-
-HEADERS += \
- dummy_plugin.h \
- dummy.h
-
-!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
- cp.files = qmldir plugins.qmltypes
- cp.path = $$OUT_PWD
- COPIES += cp
-}
diff --git a/tests/auto/qml/qmlplugindump/data/dumper/ExtendedType/extendedtype.pro b/tests/auto/qml/qmlplugindump/data/dumper/ExtendedType/extendedtype.pro
deleted file mode 100644
index 24243aa622..0000000000
--- a/tests/auto/qml/qmlplugindump/data/dumper/ExtendedType/extendedtype.pro
+++ /dev/null
@@ -1,22 +0,0 @@
-TEMPLATE = lib
-TARGET = ExtendedType
-QT += qml
-CONFIG += qt plugin
-
-CONFIG -= debug_and_release_target
-!build_pass:qtConfig(debug_and_release): CONFIG += release
-
-TARGET = $$qtLibraryTarget($$TARGET)
-
-SOURCES += \
- plugin.cpp
-
-HEADERS += \
- plugin.h \
- types.h
-
-!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
- cp.files = qmldir plugins.qmltypes
- cp.path = $$OUT_PWD
- COPIES += cp
-}
diff --git a/tests/auto/qml/qmlplugindump/data/dumper/Imports/imports.pro b/tests/auto/qml/qmlplugindump/data/dumper/Imports/imports.pro
deleted file mode 100644
index b4bd9baf5b..0000000000
--- a/tests/auto/qml/qmlplugindump/data/dumper/Imports/imports.pro
+++ /dev/null
@@ -1,24 +0,0 @@
-TEMPLATE = lib
-TARGET = Imports
-QT += qml
-CONFIG += qt plugin
-
-CONFIG -= debug_and_release_target
-!build_pass:qtConfig(debug_and_release): CONFIG += release
-
-TARGET = $$qtLibraryTarget($$TARGET)
-
-SOURCES += \
- imports_plugin.cpp \
- imports.cpp
-
-HEADERS += \
- imports_plugin.h \
- imports.h
-
-!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
- cp.files = qmldir plugins.qmltypes CompositeImports.qml Derived.qml
- cp.path = $$OUT_PWD
- COPIES += cp
-}
-
diff --git a/tests/auto/qml/qmlplugindump/data/dumper/Versions/versions.pro b/tests/auto/qml/qmlplugindump/data/dumper/Versions/versions.pro
deleted file mode 100644
index 6bbb9e556b..0000000000
--- a/tests/auto/qml/qmlplugindump/data/dumper/Versions/versions.pro
+++ /dev/null
@@ -1,23 +0,0 @@
-TEMPLATE = lib
-TARGET = Versions
-QT += qml
-CONFIG += qt plugin
-
-CONFIG -= debug_and_release_target
-!build_pass:qtConfig(debug_and_release): CONFIG += release
-
-TARGET = $$qtLibraryTarget($$TARGET)
-
-SOURCES += \
- versions_plugin.cpp \
- versions.cpp
-
-HEADERS += \
- versions_plugin.h \
- versions.h
-
-!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
- cpqmldir.files = qmldir plugins.qmltypes
- cpqmldir.path = $$OUT_PWD
- COPIES += cpqmldir
-}
diff --git a/tests/auto/qml/qmlplugindump/qmlplugindump.pro b/tests/auto/qml/qmlplugindump/qmlplugindump.pro
deleted file mode 100644
index 34eb58c981..0000000000
--- a/tests/auto/qml/qmlplugindump/qmlplugindump.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-TEMPLATE = subdirs
-
-SUBDIRS += \
- tst_qmlplugindump.pro \
- data/dumper/Dummy/dummy.pro \
- data/dumper/Imports/imports.pro \
- data/dumper/Versions/versions.pro \
- data/dumper/ExtendedType/extendedtype.pro
diff --git a/tests/auto/qml/qmlplugindump/tst_qmlplugindump.pro b/tests/auto/qml/qmlplugindump/tst_qmlplugindump.pro
deleted file mode 100644
index be0a0a49b6..0000000000
--- a/tests/auto/qml/qmlplugindump/tst_qmlplugindump.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-QT += testlib gui-private qml
-macx:CONFIG -= app_bundle
-
-CONFIG += testcase
-
-include(../../shared/util.pri)
-
-DEFINES += QT_QMLTEST_DIR=\\\"$${_PRO_FILE_PWD_}\\\"
-SOURCES += tst_qmlplugindump.cpp