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/auto/qml/debugger/debugger.pro | 33 ---------------------- .../qdebugmessageservice/qdebugmessageservice.pro | 12 -------- .../debugger/qpacketprotocol/qpacketprotocol.pro | 9 ------ .../debugger/qqmldebugclient/qqmldebugclient.pro | 16 ----------- .../qqmldebuggingenabler/qqmldebuggingenabler.pro | 4 --- .../qqmldebuggingenabler/qqmldebuggingenabler.pro | 11 -------- .../qqmldebuggingenablerserver.pro | 11 -------- .../auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro | 24 ---------------- .../qqmldebugjsserver/qqmldebugjsserver.pro | 9 ------ .../qml/debugger/qqmldebuglocal/qqmldebuglocal.pro | 14 --------- .../debugger/qqmldebugprocess/qqmldebugprocess.pro | 4 --- .../qqmldebugprocess/qqmldebugprocess.pro | 14 --------- .../qqmldebugprocessprocess.pro | 11 -------- .../debugger/qqmldebugservice/qqmldebugservice.pro | 19 ------------- .../qqmldebugtranslationservice.pro | 12 -------- .../qqmlenginecontrol/qqmlenginecontrol.pro | 15 ---------- .../qqmlenginedebuginspectorintegrationtest.pro | 11 -------- .../qqmlenginedebugservice.pro | 12 -------- .../qml/debugger/qqmlinspector/qqmlinspector.pro | 11 -------- .../qqmlnativeconnector/qqmlnativeconnector.pro | 6 ---- .../auto/qml/debugger/qqmlpreview/qqmlpreview.pro | 25 ---------------- .../qqmlprofilerservice/qqmlprofilerservice.pro | 25 ---------------- .../auto/qml/debugger/qv4debugger/qv4debugger.pro | 19 ------------- tests/auto/qml/debugger/shared/debugutil.pri | 11 -------- 24 files changed, 338 deletions(-) delete mode 100644 tests/auto/qml/debugger/debugger.pro delete mode 100644 tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro delete mode 100644 tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro delete mode 100644 tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler.pro delete mode 100644 tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler/qqmldebuggingenabler.pro delete mode 100644 tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenablerserver/qqmldebuggingenablerserver.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugjsserver/qqmldebugjsserver.pro delete mode 100644 tests/auto/qml/debugger/qqmldebuglocal/qqmldebuglocal.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess/qqmldebugprocess.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocessprocess/qqmldebugprocessprocess.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro delete mode 100644 tests/auto/qml/debugger/qqmldebugtranslationservice/qqmldebugtranslationservice.pro delete mode 100644 tests/auto/qml/debugger/qqmlenginecontrol/qqmlenginecontrol.pro delete mode 100644 tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/qqmlenginedebuginspectorintegrationtest.pro delete mode 100644 tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro delete mode 100644 tests/auto/qml/debugger/qqmlinspector/qqmlinspector.pro delete mode 100644 tests/auto/qml/debugger/qqmlnativeconnector/qqmlnativeconnector.pro delete mode 100644 tests/auto/qml/debugger/qqmlpreview/qqmlpreview.pro delete mode 100644 tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro delete mode 100644 tests/auto/qml/debugger/qv4debugger/qv4debugger.pro delete mode 100644 tests/auto/qml/debugger/shared/debugutil.pri (limited to 'tests/auto/qml/debugger') diff --git a/tests/auto/qml/debugger/debugger.pro b/tests/auto/qml/debugger/debugger.pro deleted file mode 100644 index 890e722aa3..0000000000 --- a/tests/auto/qml/debugger/debugger.pro +++ /dev/null @@ -1,33 +0,0 @@ -TEMPLATE = subdirs - -SUBDIRS += qqmldebugjsserver - -PUBLICTESTS += \ - qdebugmessageservice \ - qqmldebugtranslationservice \ - qqmlenginedebugservice \ - qqmldebugjs \ - qqmlinspector \ - qqmlprofilerservice \ - qpacketprotocol \ - qqmlenginedebuginspectorintegrationtest \ - qqmlenginecontrol \ - qqmldebuggingenabler \ - qqmlnativeconnector \ - qqmldebugprocess \ - qqmlpreview - -PRIVATETESTS += \ - qqmldebugclient \ - qqmldebuglocal \ - qqmldebugservice \ - qv4debugger - -SUBDIRS += $$PUBLICTESTS - -qqmldebugjs.depends = qqmldebugjsserver -qqmlprofilerservice.depends = qqmldebugjsserver - -qtConfig(private_tests): \ - SUBDIRS += $$PRIVATETESTS - diff --git a/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro b/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro deleted file mode 100644 index 3f2c0ca390..0000000000 --- a/tests/auto/qml/debugger/qdebugmessageservice/qdebugmessageservice.pro +++ /dev/null @@ -1,12 +0,0 @@ -CONFIG += testcase -TARGET = tst_qdebugmessageservice -QT += network testlib gui-private core-private -osx:CONFIG -= app_bundle - -SOURCES += tst_qdebugmessageservice.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* - -OTHER_FILES += data/test.qml diff --git a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro b/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro deleted file mode 100644 index dc0120cd87..0000000000 --- a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro +++ /dev/null @@ -1,9 +0,0 @@ -CONFIG += testcase -TARGET = tst_qpacketprotocol -osx:CONFIG -= app_bundle - -SOURCES += tst_qpacketprotocol.cpp - -include(../shared/debugutil.pri) - -QT += network testlib gui-private core-private diff --git a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro b/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro deleted file mode 100644 index 673330a3cf..0000000000 --- a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro +++ /dev/null @@ -1,16 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebugclient -osx:CONFIG -= app_bundle - -HEADERS += ../shared/qqmldebugtestservice.h - -SOURCES += tst_qqmldebugclient.cpp \ - ../shared/qqmldebugtestservice.cpp - -include(../shared/debugutil.pri) - -DEFINES += QT_QML_DEBUG_NO_WARNING - -CONFIG += qml_debug - -QT += qml-private testlib gui-private core-private diff --git a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler.pro b/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler.pro deleted file mode 100644 index 4bcbc2a97e..0000000000 --- a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS = qqmldebuggingenabler qqmldebuggingenablerserver - -qqmldebuggingenabler.depends = qqmldebuggingenablerserver diff --git a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler/qqmldebuggingenabler.pro b/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler/qqmldebuggingenabler.pro deleted file mode 100644 index bd382ebaab..0000000000 --- a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler/qqmldebuggingenabler.pro +++ /dev/null @@ -1,11 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebuggingenabler -QT += qml testlib gui-private core-private -CONFIG -= debug_and_release_target -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmldebuggingenabler.cpp - -include(../../shared/debugutil.pri) - -OTHER_FILES += data/test.qml diff --git a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenablerserver/qqmldebuggingenablerserver.pro b/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenablerserver/qqmldebuggingenablerserver.pro deleted file mode 100644 index a40ff6978b..0000000000 --- a/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenablerserver/qqmldebuggingenablerserver.pro +++ /dev/null @@ -1,11 +0,0 @@ -QT += qml testlib -osx:CONFIG -= app_bundle -CONFIG -= debug_and_release_target -INCLUDEPATH += ../../shared -SOURCES += qqmldebuggingenablerserver.cpp -DEFINES += QT_QML_DEBUG_NO_WARNING - -DESTDIR = ../qqmldebuggingenabler - -target.path = $$[QT_INSTALL_TESTS]/tst_qqmldebuggingenabler -INSTALLS += target diff --git a/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro b/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro deleted file mode 100644 index acd5546a02..0000000000 --- a/tests/auto/qml/debugger/qqmldebugjs/qqmldebugjs.pro +++ /dev/null @@ -1,24 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebugjs -QT += testlib gui-private core-private -macos:CONFIG -= app_bundle - -SOURCES += tst_qqmldebugjs.cpp - -INCLUDEPATH += ../shared -include(../shared/debugutil.pri) - -TESTDATA = data/* - -OTHER_FILES += data/test.qml data/test.js \ - data/timer.qml \ - data/exception.qml \ - data/oncompleted.qml \ - data/loadjsfile.qml \ - data/condition.qml \ - data/changeBreakpoint.qml \ - data/stepAction.qml \ - data/breakpointRelocation.qml \ - data/createComponent.qml \ - data/encodeQmlScope.qml \ - data/breakOnAnchor.qml diff --git a/tests/auto/qml/debugger/qqmldebugjsserver/qqmldebugjsserver.pro b/tests/auto/qml/debugger/qqmldebugjsserver/qqmldebugjsserver.pro deleted file mode 100644 index a31da57054..0000000000 --- a/tests/auto/qml/debugger/qqmldebugjsserver/qqmldebugjsserver.pro +++ /dev/null @@ -1,9 +0,0 @@ -QT += qml testlib -macos:CONFIG -= app_bundle -INCLUDEPATH += ../shared -SOURCES += qqmldebugjsserver.cpp -DEFINES += QT_QML_DEBUG_NO_WARNING - -target.path = $$[QT_INSTALL_TESTS]/qqmldebugjsserver -INSTALLS += target - diff --git a/tests/auto/qml/debugger/qqmldebuglocal/qqmldebuglocal.pro b/tests/auto/qml/debugger/qqmldebuglocal/qqmldebuglocal.pro deleted file mode 100644 index 1dc9de8f34..0000000000 --- a/tests/auto/qml/debugger/qqmldebuglocal/qqmldebuglocal.pro +++ /dev/null @@ -1,14 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebuglocal -osx:CONFIG -= app_bundle - -HEADERS += ../shared/qqmldebugtestservice.h - -SOURCES += tst_qqmldebuglocal.cpp \ - ../shared/qqmldebugtestservice.cpp - -include(../shared/debugutil.pri) - -QT += qml-private testlib gui-private core-private - -DEFINES += QT_QML_DEBUG_NO_WARNING diff --git a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess.pro b/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess.pro deleted file mode 100644 index 331d87b9f1..0000000000 --- a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess.pro +++ /dev/null @@ -1,4 +0,0 @@ -TEMPLATE = subdirs -SUBDIRS = qqmldebugprocess qqmldebugprocessprocess - -qqmldebugprocess.depends = qqmldebugprocessprocess diff --git a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess/qqmldebugprocess.pro b/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess/qqmldebugprocess.pro deleted file mode 100644 index 9bea2d222c..0000000000 --- a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocess/qqmldebugprocess.pro +++ /dev/null @@ -1,14 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebugprocess -QT = core testlib -CONFIG -= debug_and_release_target -macos:CONFIG -= app_bundle - -SOURCES += \ - ../../shared/qqmldebugprocess.cpp \ - tst_qqmldebugprocess.cpp - -HEADERS += \ - ../../shared/qqmldebugprocess_p.h - -INCLUDEPATH += ../../shared diff --git a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocessprocess/qqmldebugprocessprocess.pro b/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocessprocess/qqmldebugprocessprocess.pro deleted file mode 100644 index a8eb4885d4..0000000000 --- a/tests/auto/qml/debugger/qqmldebugprocess/qqmldebugprocessprocess/qqmldebugprocessprocess.pro +++ /dev/null @@ -1,11 +0,0 @@ -QT = core -macos:CONFIG -= app_bundle -CONFIG -= debug_and_release_target -CONFIG += console -SOURCES += qqmldebugprocessprocess.cpp - -DESTDIR = ../qqmldebugprocess - -target.path = $$[QT_INSTALL_TESTS]/tst_qqmldebugprocess -INSTALLS += target - diff --git a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro b/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro deleted file mode 100644 index 3101d09ea5..0000000000 --- a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro +++ /dev/null @@ -1,19 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmldebugservice -osx:CONFIG -= app_bundle - -HEADERS += ../shared/qqmldebugtestservice.h - -SOURCES += tst_qqmldebugservice.cpp \ - ../shared/qqmldebugtestservice.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* - -OTHER_FILES += \ - data/test.qml - -DEFINES += QT_QML_DEBUG_NO_WARNING - -QT += qml-private testlib gui-private core-private diff --git a/tests/auto/qml/debugger/qqmldebugtranslationservice/qqmldebugtranslationservice.pro b/tests/auto/qml/debugger/qqmldebugtranslationservice/qqmldebugtranslationservice.pro deleted file mode 100644 index 32e60e306d..0000000000 --- a/tests/auto/qml/debugger/qqmldebugtranslationservice/qqmldebugtranslationservice.pro +++ /dev/null @@ -1,12 +0,0 @@ -CONFIG += testcase -TARGET = tst_qdebugtranslationservice -QT += network testlib gui-private core-private qmldebug-private -macos:CONFIG -= app_bundle - -SOURCES += tst_qqmldebugtranslationservice.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* - -OTHER_FILES += data/test.qml diff --git a/tests/auto/qml/debugger/qqmlenginecontrol/qqmlenginecontrol.pro b/tests/auto/qml/debugger/qqmlenginecontrol/qqmlenginecontrol.pro deleted file mode 100644 index 36957628b2..0000000000 --- a/tests/auto/qml/debugger/qqmlenginecontrol/qqmlenginecontrol.pro +++ /dev/null @@ -1,15 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlenginecontrol -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmlenginecontrol.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* - -QT += core testlib gui-private core-private - -OTHER_FILES += \ - data/test.qml \ - data/exit.qml diff --git a/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/qqmlenginedebuginspectorintegrationtest.pro b/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/qqmlenginedebuginspectorintegrationtest.pro deleted file mode 100644 index 454a1e3ab0..0000000000 --- a/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/qqmlenginedebuginspectorintegrationtest.pro +++ /dev/null @@ -1,11 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlenginedebuginspectorintegration - -QT += testlib gui-private core-private -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmlenginedebuginspectorintegration.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* diff --git a/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro b/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro deleted file mode 100644 index 5ff65ba276..0000000000 --- a/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro +++ /dev/null @@ -1,12 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlenginedebugservice -osx:CONFIG -= app_bundle - -SOURCES += \ - tst_qqmlenginedebugservice.cpp - -include(../shared/debugutil.pri) - -DEFINES += QT_QML_DEBUG_NO_WARNING - -QT += quick qml-private testlib diff --git a/tests/auto/qml/debugger/qqmlinspector/qqmlinspector.pro b/tests/auto/qml/debugger/qqmlinspector/qqmlinspector.pro deleted file mode 100644 index 0d42030b52..0000000000 --- a/tests/auto/qml/debugger/qqmlinspector/qqmlinspector.pro +++ /dev/null @@ -1,11 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlinspector - -QT += testlib gui-private core-private -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmlinspector.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* diff --git a/tests/auto/qml/debugger/qqmlnativeconnector/qqmlnativeconnector.pro b/tests/auto/qml/debugger/qqmlnativeconnector/qqmlnativeconnector.pro deleted file mode 100644 index 757aa0306d..0000000000 --- a/tests/auto/qml/debugger/qqmlnativeconnector/qqmlnativeconnector.pro +++ /dev/null @@ -1,6 +0,0 @@ -CONFIG += testcase qml_debug -TARGET = tst_qqmlnativeconnector -QT += qml testlib gui-private core-private -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmlnativeconnector.cpp diff --git a/tests/auto/qml/debugger/qqmlpreview/qqmlpreview.pro b/tests/auto/qml/debugger/qqmlpreview/qqmlpreview.pro deleted file mode 100644 index 2c27306517..0000000000 --- a/tests/auto/qml/debugger/qqmlpreview/qqmlpreview.pro +++ /dev/null @@ -1,25 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlpreview - -QT += qml testlib core qmldebug-private -macos:CONFIG -= app_bundle - -INCLUDEPATH += ../../../../../src/plugins/qmltooling/qmldbg_preview/ - -SOURCES += \ - tst_qqmlpreview.cpp \ - ../../../../../src/plugins/qmltooling/qmldbg_preview/qqmlpreviewblacklist.cpp - -HEADERS += \ - ../../../../../src/plugins/qmltooling/qmldbg_preview/qqmlpreviewblacklist.h - -include(../shared/debugutil.pri) - -TESTDATA = \ - data/window.qml \ - data/qtquick2.qml \ - data/window2.qml \ - data/window1.qml \ - data/broken.qml \ - data/zoom.qml \ - data/i18n/qml_fr_FR.qm diff --git a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro b/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro deleted file mode 100644 index 0cd4b331f2..0000000000 --- a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro +++ /dev/null @@ -1,25 +0,0 @@ -CONFIG += testcase -TARGET = tst_qqmlprofilerservice -osx:CONFIG -= app_bundle - -SOURCES += tst_qqmlprofilerservice.cpp - -include(../shared/debugutil.pri) - -TESTDATA = data/* - -QT += testlib gui-private - -OTHER_FILES += \ - data/pixmapCacheTest.qml \ - data/controlFromJS.qml \ - data/test.qml \ - data/exit.qml \ - data/scenegraphTest.qml \ - data/TestImage_2x2.png \ - data/signalSourceLocation.qml \ - data/javascript.qml \ - data/timer.qml \ - data/qstr.qml \ - data/memory.qml \ - data/batchOverflow.qml diff --git a/tests/auto/qml/debugger/qv4debugger/qv4debugger.pro b/tests/auto/qml/debugger/qv4debugger/qv4debugger.pro deleted file mode 100644 index e25b4260e5..0000000000 --- a/tests/auto/qml/debugger/qv4debugger/qv4debugger.pro +++ /dev/null @@ -1,19 +0,0 @@ -CONFIG += testcase -TARGET = tst_qv4debugger -osx:CONFIG -= app_bundle - -SOURCES += \ - $$PWD/tst_qv4debugger.cpp \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.cpp \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4debugger.cpp \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.cpp - -HEADERS += \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4debugger.h \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger/qv4debugjob.h - -INCLUDEPATH += \ - $$PWD/../../../../../src/plugins/qmltooling/qmldbg_debugger - -QT += core-private gui-private qml-private network testlib diff --git a/tests/auto/qml/debugger/shared/debugutil.pri b/tests/auto/qml/debugger/shared/debugutil.pri deleted file mode 100644 index 13dcdb91d8..0000000000 --- a/tests/auto/qml/debugger/shared/debugutil.pri +++ /dev/null @@ -1,11 +0,0 @@ -QT += qmldebug-private - -INCLUDEPATH += $$PWD -include($$PWD/../../../shared/util.pri) - -HEADERS += \ - $$PWD/debugutil_p.h \ - $$PWD/qqmldebugprocess_p.h -SOURCES += \ - $$PWD/debugutil.cpp \ - $$PWD/qqmldebugprocess.cpp -- cgit v1.2.3