From 78ab4b8d8b75fed240cded1a3f182048e56a8823 Mon Sep 17 00:00:00 2001 From: Fabian Kosmale Date: Fri, 15 Jan 2021 13:37:58 +0100 Subject: 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 Reviewed-by: Ulf Hermann --- tests/manual/highdpi/highdpi.pro | 13 ---------- tests/manual/httpserver/httpserver.pro | 13 ---------- tests/manual/listview/listview.pro | 29 ---------------------- tests/manual/mousearea/mousearea.pro | 7 ------ tests/manual/nodetypes_ng/nodetypes_ng.pro | 11 -------- tests/manual/pointer/pointer.pro | 8 ------ tests/manual/qmltypememory/TestPlugin/plugin.pro | 7 ------ tests/manual/qmltypememory/qmltypememory.pro | 8 ------ .../manual/quickwidgetviewer/quickwidgetviewer.pro | 4 --- tests/manual/scalablepath/scalablepath.pro | 5 ---- .../scenegrabber/scenegrabber.pro | 10 -------- .../scenegraph_lancelot/scenegraph/scenegraph.pro | 17 ------------- .../scenegraph_lancelot/scenegraph_lancelot.pro | 2 -- tests/manual/shapestest/shapestest.pro | 6 ----- .../abstracttablemodel/abstracttablemodel.pro | 10 -------- tests/manual/tableview/listmodel/listmodel.pro | 10 -------- .../manual/tableview/storagemodel/storagemodel.pro | 11 -------- tests/manual/tableview/tablemodel/form/form.pro | 10 -------- tests/manual/tableview/tablemodel/json/json.pro | 12 --------- tests/manual/tableview/tablemodel/tablemodel.pro | 2 -- tests/manual/tableview/tableview.pro | 4 --- tests/manual/text/text.pro | 7 ------ tests/manual/touch/touch.pro | 7 ------ tests/manual/v4/auto/auto.pro | 4 --- .../executableallocator/executableallocator.pro | 4 --- 25 files changed, 221 deletions(-) delete mode 100644 tests/manual/highdpi/highdpi.pro delete mode 100644 tests/manual/httpserver/httpserver.pro delete mode 100644 tests/manual/listview/listview.pro delete mode 100644 tests/manual/mousearea/mousearea.pro delete mode 100644 tests/manual/nodetypes_ng/nodetypes_ng.pro delete mode 100644 tests/manual/pointer/pointer.pro delete mode 100644 tests/manual/qmltypememory/TestPlugin/plugin.pro delete mode 100644 tests/manual/qmltypememory/qmltypememory.pro delete mode 100644 tests/manual/quickwidgetviewer/quickwidgetviewer.pro delete mode 100644 tests/manual/scalablepath/scalablepath.pro delete mode 100644 tests/manual/scenegraph_lancelot/scenegrabber/scenegrabber.pro delete mode 100644 tests/manual/scenegraph_lancelot/scenegraph/scenegraph.pro delete mode 100644 tests/manual/scenegraph_lancelot/scenegraph_lancelot.pro delete mode 100644 tests/manual/shapestest/shapestest.pro delete mode 100644 tests/manual/tableview/abstracttablemodel/abstracttablemodel.pro delete mode 100644 tests/manual/tableview/listmodel/listmodel.pro delete mode 100644 tests/manual/tableview/storagemodel/storagemodel.pro delete mode 100644 tests/manual/tableview/tablemodel/form/form.pro delete mode 100644 tests/manual/tableview/tablemodel/json/json.pro delete mode 100644 tests/manual/tableview/tablemodel/tablemodel.pro delete mode 100644 tests/manual/tableview/tableview.pro delete mode 100644 tests/manual/text/text.pro delete mode 100644 tests/manual/touch/touch.pro delete mode 100644 tests/manual/v4/auto/auto.pro delete mode 100644 tests/manual/v4/auto/executableallocator/executableallocator.pro (limited to 'tests/manual') diff --git a/tests/manual/highdpi/highdpi.pro b/tests/manual/highdpi/highdpi.pro deleted file mode 100644 index a434f848ae..0000000000 --- a/tests/manual/highdpi/highdpi.pro +++ /dev/null @@ -1,13 +0,0 @@ -TEMPLATE = lib -CONFIG += plugin -QT += qml quick - -DESTDIR = ImageProvider -TARGET = qmlimageproviderplugin - -SOURCES += imageprovider.cpp - -target.path = $$[QT_INSTALL_EXAMPLES]/quick/imageprovider/ImageProvider -qml.files = ImageProvider/qmldir -qml.path = $$[QT_INSTALL_EXAMPLES]/quick/imageprovider/ImageProvider -INSTALLS = target qml diff --git a/tests/manual/httpserver/httpserver.pro b/tests/manual/httpserver/httpserver.pro deleted file mode 100644 index 2a6c32f1cf..0000000000 --- a/tests/manual/httpserver/httpserver.pro +++ /dev/null @@ -1,13 +0,0 @@ -QT = core network - -TARGET = httpserver -CONFIG += console -CONFIG -= app_bundle - -TEMPLATE = app - -SERVER = $$PWD/../../auto/shared -INCLUDEPATH += $$SERVER - -SOURCES += main.cpp $$SERVER/testhttpserver.cpp -HEADERS += $$SERVER/testhttpserver.h diff --git a/tests/manual/listview/listview.pro b/tests/manual/listview/listview.pro deleted file mode 100644 index a517b75079..0000000000 --- a/tests/manual/listview/listview.pro +++ /dev/null @@ -1,29 +0,0 @@ -QT += quick -CONFIG += c++11 - -# The following define makes your compiler emit warnings if you use -# any Qt feature that has been marked deprecated (the exact warnings -# depend on your compiler). Refer to the documentation for the -# deprecated API to know how to port your code away from it. -DEFINES += QT_DEPRECATED_WARNINGS - -# You can also make your code fail to compile if it uses deprecated APIs. -# In order to do so, uncomment the following line. -# You can also select to disable deprecated APIs only up to a certain version of Qt. -#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 - -SOURCES += \ - main.cpp - -RESOURCES += qml.qrc - -# Additional import path used to resolve QML modules in Qt Creator's code model -QML_IMPORT_PATH = - -# Additional import path used to resolve QML modules just for Qt Quick Designer -QML_DESIGNER_IMPORT_PATH = - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/mousearea/mousearea.pro b/tests/manual/mousearea/mousearea.pro deleted file mode 100644 index 3705d41df0..0000000000 --- a/tests/manual/mousearea/mousearea.pro +++ /dev/null @@ -1,7 +0,0 @@ -TEMPLATE = app - -QT += qml quick - -SOURCES += main.cpp - -RESOURCES += qml.qrc ../../../examples/quick/shared/quick_shared.qrc diff --git a/tests/manual/nodetypes_ng/nodetypes_ng.pro b/tests/manual/nodetypes_ng/nodetypes_ng.pro deleted file mode 100644 index 68b9211c4f..0000000000 --- a/tests/manual/nodetypes_ng/nodetypes_ng.pro +++ /dev/null @@ -1,11 +0,0 @@ -QT += qml quick - -SOURCES += nodetypes_ng.cpp - -RESOURCES += nodetypes_ng.qrc - -OTHER_FILES += \ - main.qml \ - SimpleRect.qml \ - Rects.qml \ - LotsOfRects.qml diff --git a/tests/manual/pointer/pointer.pro b/tests/manual/pointer/pointer.pro deleted file mode 100644 index 43fddbd459..0000000000 --- a/tests/manual/pointer/pointer.pro +++ /dev/null @@ -1,8 +0,0 @@ -TEMPLATE = app - -QT += qml quick quick-private svg - -SOURCES += main.cpp inputinspector.cpp -HEADERS += inputinspector.h - -RESOURCES += qml.qrc ../../../examples/quick/shared/quick_shared.qrc diff --git a/tests/manual/qmltypememory/TestPlugin/plugin.pro b/tests/manual/qmltypememory/TestPlugin/plugin.pro deleted file mode 100644 index 7575442800..0000000000 --- a/tests/manual/qmltypememory/TestPlugin/plugin.pro +++ /dev/null @@ -1,7 +0,0 @@ -TEMPLATE = lib -CONFIG += plugin -QT += qml - -TARGET = testplugin - -SOURCES += plugin.cpp diff --git a/tests/manual/qmltypememory/qmltypememory.pro b/tests/manual/qmltypememory/qmltypememory.pro deleted file mode 100644 index 2bd873d554..0000000000 --- a/tests/manual/qmltypememory/qmltypememory.pro +++ /dev/null @@ -1,8 +0,0 @@ -TEMPLATE = app -TARGET = qmltypememory -INCLUDEPATH += . -QT += qml - -# Input -HEADERS += testdriver.h -SOURCES += main.cpp testdriver.cpp diff --git a/tests/manual/quickwidgetviewer/quickwidgetviewer.pro b/tests/manual/quickwidgetviewer/quickwidgetviewer.pro deleted file mode 100644 index a32d05e174..0000000000 --- a/tests/manual/quickwidgetviewer/quickwidgetviewer.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE = app -QT += quickwidgets -CONFIG += c++11 console -SOURCES += main.cpp diff --git a/tests/manual/scalablepath/scalablepath.pro b/tests/manual/scalablepath/scalablepath.pro deleted file mode 100644 index b95ce1de44..0000000000 --- a/tests/manual/scalablepath/scalablepath.pro +++ /dev/null @@ -1,5 +0,0 @@ -TEMPLATE = app -QT += quick qml -SOURCES += main.cpp -RESOURCES += qml.qrc -CONFIG += c++11 diff --git a/tests/manual/scenegraph_lancelot/scenegrabber/scenegrabber.pro b/tests/manual/scenegraph_lancelot/scenegrabber/scenegrabber.pro deleted file mode 100644 index 3ecb1f8ac1..0000000000 --- a/tests/manual/scenegraph_lancelot/scenegrabber/scenegrabber.pro +++ /dev/null @@ -1,10 +0,0 @@ -TARGET = qmlscenegrabber -DESTDIR=.. -CONFIG += console - -QT += quick - -SOURCES += main.cpp - -RESOURCES += \ - ../data/shared/shared.qrc diff --git a/tests/manual/scenegraph_lancelot/scenegraph/scenegraph.pro b/tests/manual/scenegraph_lancelot/scenegraph/scenegraph.pro deleted file mode 100644 index 9deb46427e..0000000000 --- a/tests/manual/scenegraph_lancelot/scenegraph/scenegraph.pro +++ /dev/null @@ -1,17 +0,0 @@ -CONFIG += testcase -TARGET = tst_scenegraph -DESTDIR=.. -macx:CONFIG -= app_bundle -CONFIG += console - -SOURCES += tst_scenegraph.cpp - -# Include Lancelot protocol code to communicate with baseline server. -# Assuming that we are in a normal Qt5 source code tree -include(../../../../../qtbase/tests/baselineserver/shared/qbaselinetest.pri) - -win32: TEST_HELPER_INSTALLS += .././qmlscenegrabber.exe -else: macos: TEST_HELPER_INSTALLS += .././qmlscenegrabber.app -else: TEST_HELPER_INSTALLS += .././qmlscenegrabber - -TESTDATA += ../data diff --git a/tests/manual/scenegraph_lancelot/scenegraph_lancelot.pro b/tests/manual/scenegraph_lancelot/scenegraph_lancelot.pro deleted file mode 100644 index 1bbb334e07..0000000000 --- a/tests/manual/scenegraph_lancelot/scenegraph_lancelot.pro +++ /dev/null @@ -1,2 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS = scenegrabber scenegraph diff --git a/tests/manual/shapestest/shapestest.pro b/tests/manual/shapestest/shapestest.pro deleted file mode 100644 index 1776175134..0000000000 --- a/tests/manual/shapestest/shapestest.pro +++ /dev/null @@ -1,6 +0,0 @@ -TEMPLATE = app - -QT += quick qml -SOURCES += main.cpp -RESOURCES += shapestest.qrc -OTHER_FILES += shapestest.qml diff --git a/tests/manual/tableview/abstracttablemodel/abstracttablemodel.pro b/tests/manual/tableview/abstracttablemodel/abstracttablemodel.pro deleted file mode 100644 index fee8edc6c8..0000000000 --- a/tests/manual/tableview/abstracttablemodel/abstracttablemodel.pro +++ /dev/null @@ -1,10 +0,0 @@ -TEMPLATE = app -TARGET = tableview_abstracttablemodel -QT += qml quick -SOURCES += main.cpp -RESOURCES += main.qml Button.qml - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/tableview/listmodel/listmodel.pro b/tests/manual/tableview/listmodel/listmodel.pro deleted file mode 100644 index dbae0db2b1..0000000000 --- a/tests/manual/tableview/listmodel/listmodel.pro +++ /dev/null @@ -1,10 +0,0 @@ -TEMPLATE = app -TARGET = tableview_listmodel -QT += qml quick -SOURCES += main.cpp -RESOURCES += main.qml - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/tableview/storagemodel/storagemodel.pro b/tests/manual/tableview/storagemodel/storagemodel.pro deleted file mode 100644 index c6a018239e..0000000000 --- a/tests/manual/tableview/storagemodel/storagemodel.pro +++ /dev/null @@ -1,11 +0,0 @@ -TEMPLATE = app -TARGET = tableview_storage -QT += qml quick -SOURCES += main.cpp storagemodel.cpp -HEADERS += storagemodel.h -RESOURCES += main.qml - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/tableview/tablemodel/form/form.pro b/tests/manual/tableview/tablemodel/form/form.pro deleted file mode 100644 index ba6f7a91b1..0000000000 --- a/tests/manual/tableview/tablemodel/form/form.pro +++ /dev/null @@ -1,10 +0,0 @@ -TEMPLATE = app -TARGET = form -QT += qml quick -SOURCES += main.cpp -RESOURCES += main.qml RowForm.qml - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/tableview/tablemodel/json/json.pro b/tests/manual/tableview/tablemodel/json/json.pro deleted file mode 100644 index 2339e488aa..0000000000 --- a/tests/manual/tableview/tablemodel/json/json.pro +++ /dev/null @@ -1,12 +0,0 @@ -TEMPLATE = app -TARGET = json -QT += qml quick -SOURCES += main.cpp -RESOURCES += \ - main.qml \ - JsonData.js - -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target diff --git a/tests/manual/tableview/tablemodel/tablemodel.pro b/tests/manual/tableview/tablemodel/tablemodel.pro deleted file mode 100644 index 4e4eba7653..0000000000 --- a/tests/manual/tableview/tablemodel/tablemodel.pro +++ /dev/null @@ -1,2 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS += form diff --git a/tests/manual/tableview/tableview.pro b/tests/manual/tableview/tableview.pro deleted file mode 100644 index 5040f0e747..0000000000 --- a/tests/manual/tableview/tableview.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS += abstracttablemodel \ - listmodel \ - storagemodel diff --git a/tests/manual/text/text.pro b/tests/manual/text/text.pro deleted file mode 100644 index 3705d41df0..0000000000 --- a/tests/manual/text/text.pro +++ /dev/null @@ -1,7 +0,0 @@ -TEMPLATE = app - -QT += qml quick - -SOURCES += main.cpp - -RESOURCES += qml.qrc ../../../examples/quick/shared/quick_shared.qrc diff --git a/tests/manual/touch/touch.pro b/tests/manual/touch/touch.pro deleted file mode 100644 index 3705d41df0..0000000000 --- a/tests/manual/touch/touch.pro +++ /dev/null @@ -1,7 +0,0 @@ -TEMPLATE = app - -QT += qml quick - -SOURCES += main.cpp - -RESOURCES += qml.qrc ../../../examples/quick/shared/quick_shared.qrc diff --git a/tests/manual/v4/auto/auto.pro b/tests/manual/v4/auto/auto.pro deleted file mode 100644 index 3b189275b9..0000000000 --- a/tests/manual/v4/auto/auto.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE=subdirs -SUBDIRS=\ - executableallocator - diff --git a/tests/manual/v4/auto/executableallocator/executableallocator.pro b/tests/manual/v4/auto/executableallocator/executableallocator.pro deleted file mode 100644 index 196398020d..0000000000 --- a/tests/manual/v4/auto/executableallocator/executableallocator.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE = app -TARGET = tst_executableallocator -SOURCES = tst_executableallocator.cpp -QT = core v4-private testlib -- cgit v1.2.3