diff options
author | Fabian Kosmale <[email protected]> | 2021-01-15 13:37:58 +0100 |
---|---|---|
committer | Fabian Kosmale <[email protected]> | 2021-01-15 15:34:22 +0100 |
commit | 78ab4b8d8b75fed240cded1a3f182048e56a8823 (patch) | |
tree | 96cdc6b049a1f8330648134eecfe74b75be28350 /tests/auto/qml/qmlplugindump | |
parent | bd017c18ab1faa6011db12afadade74172e03de7 (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 <[email protected]>
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'tests/auto/qml/qmlplugindump')
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 |