diff --git a/Mk/Uses/qt.mk b/Mk/Uses/qt.mk --- a/Mk/Uses/qt.mk +++ b/Mk/Uses/qt.mk @@ -127,7 +127,7 @@ _QT_MK_POST_INCLUDED= qt.mk # The Qt components supported by qt.mk: list of shared, and version specific ones -_USE_QT_ALL= assistant dbus declarative designer doc gui help \ +_USE_QT_ALL= assistant dbus declarative declarative-test designer doc gui help \ imageformats l10n linguist linguisttools multimedia \ network opengl pixeltool qdbusviewer qmake script \ scripttools sql sql-mysql sql-odbc sql-pgsql \ @@ -177,6 +177,9 @@ qt-declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative qt-declarative_LIB= libQt${_QT_LIBVER}Qml.so +qt-declarative-test_PORT= x11-toolkits/${_QT_RELNAME}-declarative-test +qt-declarative-test_LIB= libQt${_QT_LIBVER}QuickTest.so + qt-designer_PORT= devel/${_QT_RELNAME}-designer qt-designer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/designer diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -14,9 +14,9 @@ coreaddons crash dbusaddons filemetadata i18n iconthemes itemviews \ jobwidgets kcmutils kdeclarative kio kirigami2 package \ service solid widgetsaddons windowsystem xmlgui -USE_QT= buildtools_build qmake_build testlib_build \ - concurrent core dbus declarative gui multimedia network \ - quickcontrols2 sql svg widgets xml +USE_QT= concurrent core dbus declarative gui multimedia network \ + quickcontrols2 sql svg widgets xml \ + buildtools_build declarative-test_build qmake_build testlib_build OPTIONS_DEFINE= DOCS VLC OPTIONS_DEFAULT= DOCS VLC diff --git a/www/qt5-webchannel/Makefile b/www/qt5-webchannel/Makefile --- a/www/qt5-webchannel/Makefile +++ b/www/qt5-webchannel/Makefile @@ -9,7 +9,7 @@ USES= compiler:c++11-lang qmake:norecursive qt-dist:5,webchannel USE_QT= core declarative \ - buildtools_build testlib_build + buildtools_build declarative-test_build testlib_build # The default EXTRACT_AFTER_ARGS value excludes examples/ from the extracted # tarball, which we need during the build. diff --git a/www/qt5-webkit/Makefile b/www/qt5-webkit/Makefile --- a/www/qt5-webkit/Makefile +++ b/www/qt5-webkit/Makefile @@ -26,7 +26,7 @@ USE_PERL5= build USE_QT= core declarative gui location network opengl printsupport \ sensors webchannel widgets \ - buildtools_build qmake_build testlib_build + buildtools_build declarative-test_build qmake_build testlib_build USE_RUBY= yes USE_XORG= x11 xcomposite xrender diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -168,6 +168,7 @@ SUBDIR += qt5-charts SUBDIR += qt5-datavis3d SUBDIR += qt5-declarative + SUBDIR += qt5-declarative-test SUBDIR += qt5-gamepad SUBDIR += qt5-gui SUBDIR += qt5-quick3d diff --git a/x11-toolkits/qt5-declarative/Makefile b/x11-toolkits/qt5-declarative-test/Makefile copy from x11-toolkits/qt5-declarative/Makefile copy to x11-toolkits/qt5-declarative-test/Makefile --- a/x11-toolkits/qt5-declarative/Makefile +++ b/x11-toolkits/qt5-declarative-test/Makefile @@ -1,28 +1,24 @@ -PORTNAME= declarative +PORTNAME= declarative-test DISTVERSION= ${QT5_VERSION} -PORTREVISION= 3 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org -COMMENT= Qt declarative framework for dynamic user interfaces +COMMENT= Qt declarative framework for dynamic user interface (testing) USES= compiler:c++11-lang gl python:build qmake:norecursive \ - qt-dist:5 + qt-dist:5,declarative USE_GL= gl -USE_QT= core gui network sql widgets \ - buildtools_build testlib_build +USE_QT= core declarative gui network sql testlib widgets \ + buildtools_build CONFLICTS= qt5-declarative-render2d-* qt5-qml qt5-quick BINARY_ALIAS= python=${PYTHON_CMD} QT_BINARIES= yes -QT_DEFINES= ACCESSIBILITY -QT_CONFIG= accessibility accessibility-atspi-bridge +TOOLS= qmltestrunner -TOOLS= qml qmlcachegen qmleasing qmlformat qmlimportscanner qmllint qmlmin \ - qmlplugindump qmlpreview qmlprofiler qmlscene qmltestrunner qmltyperegistrar post-patch: # qtdeclarative.pro wants to run python, replace that with PYTHON_CMD ${REINPLACE_CMD} '/py_out/s#python#${PYTHON_CMD}#g' \ diff --git a/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h @@ -0,0 +1,11 @@ +--- src/3rdparty/masm/assembler/ARM64Assembler.h.orig 2020-10-27 08:02:12 UTC ++++ src/3rdparty/masm/assembler/ARM64Assembler.h +@@ -3040,6 +3040,8 @@ class ARM64Assembler { (public) + linuxPageFlush(current, current + page); + + linuxPageFlush(current, end); ++#elif OS(FREEBSD) ++ __clear_cache(code, reinterpret_cast(code) + size); + #elif OS(QNX) + #if !ENABLE(ASSEMBLER_WX_EXCLUSIVE) + msync(code, size, MS_INVALIDATE_ICACHE); diff --git a/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARMv7Assembler.h b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARMv7Assembler.h new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_assembler_ARMv7Assembler.h @@ -0,0 +1,11 @@ +--- src/3rdparty/masm/assembler/ARMv7Assembler.h.orig 2020-10-27 08:02:12 UTC ++++ src/3rdparty/masm/assembler/ARMv7Assembler.h +@@ -2369,6 +2369,8 @@ class ARMv7Assembler { (public) + UNUSED_PARAM(code); + UNUSED_PARAM(size); + #endif ++#elif OS(FREEBSD) && COMPILER(CLANG) ++ __clear_cache(code, reinterpret_cast(code) + size); + #else + #error "The cacheFlush support is missing on this platform." + #endif diff --git a/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_wtf_Platform.h b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_wtf_Platform.h new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-src_3rdparty_masm_wtf_Platform.h @@ -0,0 +1,17 @@ +Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform +used __ARM_ARCH_6ZK__ instead of __ARM_ARCH_6KZ__. + +Append the correct spellings to the checks for __ARM_ARCH_6ZK__. + +[1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html + +--- src/3rdparty/masm/wtf/Platform.h.orig 2020-10-27 08:02:12 UTC ++++ src/3rdparty/masm/wtf/Platform.h +@@ -222,6 +222,7 @@ + #elif defined(__ARM_ARCH_6__) \ + || defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6T2__) \ diff --git a/x11-toolkits/qt5-declarative-test/files/patch-src_src.pro b/x11-toolkits/qt5-declarative-test/files/patch-src_src.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-src_src.pro @@ -0,0 +1,44 @@ +--- src/src.pro.orig 2021-09-24 07:19:35 UTC ++++ src/src.pro +@@ -7,40 +7,6 @@ QT_FOR_CONFIG += qml qml-private quick-private + # Otherwise we cannot compile qmltyperegistrar + requires(qtConfig(commandlineparser)) + +-# We need qmltyperegistrar for all type registrations, even in qml +-SUBDIRS += \ +- qmltyperegistrar \ +- qml \ +- qmlmodels +- +-qtConfig(qml-worker-script): \ +- SUBDIRS += qmlworkerscript +- +-qtHaveModule(gui):qtConfig(qml-animation) { +- SUBDIRS += quick +- +- qtConfig(quick-path): \ +- SUBDIRS += quickshapes +- +- qtConfig(testlib): \ +- SUBDIRS += qmltest +- +- qtConfig(quick-particles): \ +- SUBDIRS += particles +- qtHaveModule(widgets): SUBDIRS += quickwidgets +-} +- +-SUBDIRS += \ +- plugins \ +- imports +- +-qtConfig(qml-devtools): SUBDIRS += qmldevtools +- +-qmldevtools.depends = qml +- +-qtConfig(qml-network) { +- QT_FOR_CONFIG += network +- qtConfig(thread):qtConfig(localserver):qtConfig(qml-debug): SUBDIRS += qmldebug +-} ++SUBDIRS += qmltest + + DISTFILES += sync.profile configure.json diff --git a/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlcachegen_qmlcachegen.pro b/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlcachegen_qmlcachegen.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlcachegen_qmlcachegen.pro @@ -0,0 +1,11 @@ +--- tools/qmlcachegen/qmlcachegen.pro.orig 2020-10-27 08:02:12 UTC ++++ tools/qmlcachegen/qmlcachegen.pro +@@ -32,7 +32,7 @@ cmake_config_file.output = $$MODULE_BASE_OUTDIR/lib/cm + QMAKE_SUBSTITUTES += cmake_config_file + + cmake_build_integration.files = $$cmake_config_file.output +-cmake_build_integration.path = $$[QT_INSTALL_LIBS]/cmake/Qt5QuickCompiler ++cmake_build_integration.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5QuickCompiler + prefix_build: INSTALLS += cmake_build_integration + else: COPIES += cmake_build_integration + diff --git a/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlimportscanner_qmlimportscanner.pro b/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlimportscanner_qmlimportscanner.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-tools_qmlimportscanner_qmlimportscanner.pro @@ -0,0 +1,11 @@ +--- tools/qmlimportscanner/qmlimportscanner.pro.orig 2019-12-31 21:19:52 UTC ++++ tools/qmlimportscanner/qmlimportscanner.pro +@@ -47,7 +47,7 @@ cmake_config_file.output = $$MODULE_BASE_OUTDIR/lib/cm + QMAKE_SUBSTITUTES += cmake_config_file + + cmake_build_integration.files = $$cmake_config_file.output $$PWD/Qt5QmlImportScannerTemplate.cpp.in +-cmake_build_integration.path = $$[QT_INSTALL_LIBS]/cmake/Qt5QmlImportScanner ++cmake_build_integration.path = $$[QT_INSTALL_PREFIX]/lib/cmake/Qt5QmlImportScanner + prefix_build: INSTALLS += cmake_build_integration + else: COPIES += cmake_build_integration + diff --git a/x11-toolkits/qt5-declarative-test/files/patch-tools_tools.pro b/x11-toolkits/qt5-declarative-test/files/patch-tools_tools.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/files/patch-tools_tools.pro @@ -0,0 +1,50 @@ +--- tools/tools.pro.orig 2021-09-24 07:43:40 UTC ++++ tools/tools.pro +@@ -1,45 +1,8 @@ + TEMPLATE = subdirs + QT_FOR_CONFIG += qml-private + +-qtConfig(qml-devtools) { +- SUBDIRS += \ +- qmllint \ +- qmlmin \ +- qmlimportscanner \ +- qmlformat +- +- qtConfig(commandlineparser):qtConfig(xmlstreamwriter): SUBDIRS += qmlcachegen +-} +- +-qtConfig(thread):!android|android_app:!wasm:!rtems { +- SUBDIRS += \ +- qml +- +- qtConfig(qml-profiler): SUBDIRS += qmlprofiler +- qtConfig(qml-preview): SUBDIRS += qmlpreview +- +- qtHaveModule(quick) { +- !static: { +- SUBDIRS += \ +- qmlscene \ +- qmltime +- +- qtConfig(regularexpression):qtConfig(process) { +- SUBDIRS += \ +- qmlplugindump +- } +- } +- qtHaveModule(widgets) { +- QT_FOR_CONFIG += widgets +- qtConfig(dialogbuttonbox) { +- SUBDIRS += \ +- qmleasing +- } +- } +- } +- qtHaveModule(qmltest): SUBDIRS += qmltestrunner +- qtConfig(private_tests): SUBDIRS += qmljs +-} ++SUBDIRS += qmltestrunner ++qtConfig(private_tests): SUBDIRS += qmljs + + qtConfig(qml-devtools) { + qml.depends = qmlimportscanner diff --git a/x11-toolkits/qt5-declarative-test/pkg-descr b/x11-toolkits/qt5-declarative-test/pkg-descr new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/pkg-descr @@ -0,0 +1,7 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Qt Quick is a collection of technologies that are designed to help +developers create intuitive, modern, and fluid user interfaces. + +WWW: https://qt-project.org diff --git a/x11-toolkits/qt5-declarative-test/pkg-plist b/x11-toolkits/qt5-declarative-test/pkg-plist new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative-test/pkg-plist @@ -0,0 +1,25 @@ +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/qtestoptions_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktest_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestresult_p.h +%%QT_INCDIR%%/QtQuickTest/QtQuickTest +%%QT_INCDIR%%/QtQuickTest/QtQuickTestDepends +%%QT_INCDIR%%/QtQuickTest/QtQuickTestVersion +%%QT_INCDIR%%/QtQuickTest/qtquicktestversion.h +%%QT_INCDIR%%/QtQuickTest/quicktest.h +%%QT_INCDIR%%/QtQuickTest/quicktestglobal.h +%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfig.cmake +%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake +%%QT_BINDIR%%/qmltestrunner +%%DEBUG%%%%QT_BINDIR%%/qmltestrunner.debug +%%QT_LIBDIR%%/libQt5QuickTest.prl +%%QT_LIBDIR%%/libQt5QuickTest.so +%%QT_LIBDIR%%/libQt5QuickTest.so.5 +%%QT_LIBDIR%%/libQt5QuickTest.so.%%SHORTVER%% +%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%% +%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%%.debug +%%QT_LIBDIR%%/metatypes/qt5quicktest_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_qmltest.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmltest_private.pri +%%QT_QMLDIR%%/Qt/test/qtestroot/plugins.qmltypes +%%QT_QMLDIR%%/Qt/test/qtestroot/qmldir +libdata/pkgconfig/Qt5QuickTest.pc diff --git a/x11-toolkits/qt5-declarative/Makefile b/x11-toolkits/qt5-declarative/Makefile --- a/x11-toolkits/qt5-declarative/Makefile +++ b/x11-toolkits/qt5-declarative/Makefile @@ -1,6 +1,6 @@ PORTNAME= declarative DISTVERSION= ${QT5_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- @@ -11,7 +11,7 @@ qt-dist:5 USE_GL= gl USE_QT= core gui network sql widgets \ - buildtools_build testlib_build + buildtools_build CONFLICTS= qt5-declarative-render2d-* qt5-qml qt5-quick @@ -22,7 +22,7 @@ QT_CONFIG= accessibility accessibility-atspi-bridge TOOLS= qml qmlcachegen qmleasing qmlformat qmlimportscanner qmllint qmlmin \ - qmlplugindump qmlpreview qmlprofiler qmlscene qmltestrunner qmltyperegistrar + qmlplugindump qmlpreview qmlprofiler qmlscene qmltyperegistrar post-patch: # qtdeclarative.pro wants to run python, replace that with PYTHON_CMD ${REINPLACE_CMD} '/py_out/s#python#${PYTHON_CMD}#g' \ diff --git a/x11-toolkits/qt5-declarative/files/patch-src_src.pro b/x11-toolkits/qt5-declarative/files/patch-src_src.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative/files/patch-src_src.pro @@ -0,0 +1,12 @@ +--- src/src.pro.orig 2021-09-24 07:16:45 UTC ++++ src/src.pro +@@ -22,9 +22,6 @@ qtHaveModule(gui):qtConfig(qml-animation) { + qtConfig(quick-path): \ + SUBDIRS += quickshapes + +- qtConfig(testlib): \ +- SUBDIRS += qmltest +- + qtConfig(quick-particles): \ + SUBDIRS += particles + qtHaveModule(widgets): SUBDIRS += quickwidgets diff --git a/x11-toolkits/qt5-declarative/files/patch-tools_tools.pro b/x11-toolkits/qt5-declarative/files/patch-tools_tools.pro new file mode 100644 --- /dev/null +++ b/x11-toolkits/qt5-declarative/files/patch-tools_tools.pro @@ -0,0 +1,11 @@ +--- tools/tools.pro.orig 2021-09-24 07:53:27 UTC ++++ tools/tools.pro +@@ -37,8 +37,6 @@ qtConfig(thread):!android|android_app:!wasm:!rtems { + } + } + } +- qtHaveModule(qmltest): SUBDIRS += qmltestrunner +- qtConfig(private_tests): SUBDIRS += qmljs + } + + qtConfig(qml-devtools) { diff --git a/x11-toolkits/qt5-declarative/pkg-plist b/x11-toolkits/qt5-declarative/pkg-plist --- a/x11-toolkits/qt5-declarative/pkg-plist +++ b/x11-toolkits/qt5-declarative/pkg-plist @@ -731,15 +731,6 @@ %%QT_INCDIR%%/QtQuickShapes/QtQuickShapesVersion %%QT_INCDIR%%/QtQuickShapes/qquickshapesglobal.h %%QT_INCDIR%%/QtQuickShapes/qtquickshapesversion.h -%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/qtestoptions_p.h -%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktest_p.h -%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestresult_p.h -%%QT_INCDIR%%/QtQuickTest/QtQuickTest -%%QT_INCDIR%%/QtQuickTest/QtQuickTestDepends -%%QT_INCDIR%%/QtQuickTest/QtQuickTestVersion -%%QT_INCDIR%%/QtQuickTest/qtquicktestversion.h -%%QT_INCDIR%%/QtQuickTest/quicktest.h -%%QT_INCDIR%%/QtQuickTest/quicktestglobal.h %%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qquickwidget_p.h %%QT_INCDIR%%/QtQuickWidgets/QQuickWidget %%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgets @@ -781,8 +772,6 @@ %%QT_CMAKEDIR%%/Qt5QuickParticles/Qt5QuickParticlesConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickShapes/Qt5QuickShapesConfig.cmake %%QT_CMAKEDIR%%/Qt5QuickShapes/Qt5QuickShapesConfigVersion.cmake -%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfig.cmake -%%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake %%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfigVersion.cmake %%QT_BINDIR%%/qml @@ -807,8 +796,6 @@ %%DEBUG%%%%QT_BINDIR%%/qmlprofiler.debug %%QT_BINDIR%%/qmlscene %%DEBUG%%%%QT_BINDIR%%/qmlscene.debug -%%QT_BINDIR%%/qmltestrunner -%%DEBUG%%%%QT_BINDIR%%/qmltestrunner.debug %%QT_BINDIR%%/qmltyperegistrar %%DEBUG%%%%QT_BINDIR%%/qmltyperegistrar.debug %%QT_LIBDIR%%/libQt5PacketProtocol.a @@ -853,12 +840,6 @@ %%QT_LIBDIR%%/libQt5QuickShapes.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickShapes.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickShapes.so.%%FULLVER%%.debug -%%QT_LIBDIR%%/libQt5QuickTest.prl -%%QT_LIBDIR%%/libQt5QuickTest.so -%%QT_LIBDIR%%/libQt5QuickTest.so.5 -%%QT_LIBDIR%%/libQt5QuickTest.so.%%SHORTVER%% -%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%% -%%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickWidgets.prl %%QT_LIBDIR%%/libQt5QuickWidgets.so %%QT_LIBDIR%%/libQt5QuickWidgets.so.5 @@ -881,8 +862,6 @@ %%QT_MKSPECDIR%%/modules/qt_lib_qmldevtools_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmlmodels.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmlmodels_private.pri -%%QT_MKSPECDIR%%/modules/qt_lib_qmltest.pri -%%QT_MKSPECDIR%%/modules/qt_lib_qmltest_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmlworkerscript.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmlworkerscript_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick.pri @@ -891,7 +870,6 @@ %%QT_MKSPECDIR%%/modules/qt_lib_quickshapes_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets_private.pri -%%QT_LIBDIR%%/metatypes/qt5quicktest_metatypes.json %%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so @@ -938,8 +916,6 @@ %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/wavefrontmesh/libqmlwavefrontmeshplugin.so.debug %%QT_QMLDIR%%/Qt/labs/wavefrontmesh/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/wavefrontmesh/qmldir -%%QT_QMLDIR%%/Qt/test/qtestroot/plugins.qmltypes -%%QT_QMLDIR%%/Qt/test/qtestroot/qmldir %%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so.debug %%QT_QMLDIR%%/QtQml/Models.2/plugins.qmltypes @@ -980,17 +956,9 @@ %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Window.2/libwindowplugin.so.debug %%QT_QMLDIR%%/QtQuick/Window.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Window.2/qmldir -%%QT_QMLDIR%%/QtTest/SignalSpy.qml -%%QT_QMLDIR%%/QtTest/TestCase.qml -%%QT_QMLDIR%%/QtTest/libqmltestplugin.so -%%DEBUG%%%%QT_QMLDIR%%/QtTest/libqmltestplugin.so.debug -%%QT_QMLDIR%%/QtTest/plugins.qmltypes -%%QT_QMLDIR%%/QtTest/qmldir -%%QT_QMLDIR%%/QtTest/testlogger.js %%QT_QMLDIR%%/builtins.qmltypes libdata/pkgconfig/Qt5Qml.pc libdata/pkgconfig/Qt5QmlModels.pc libdata/pkgconfig/Qt5QmlWorkerScript.pc libdata/pkgconfig/Qt5Quick.pc -libdata/pkgconfig/Qt5QuickTest.pc libdata/pkgconfig/Qt5QuickWidgets.pc