exclude qt webengine from 6.8

This commit is contained in:
Andrei Yankovich 2024-12-21 19:41:36 +01:00
parent c1c22a9fa2
commit 3f2b3cc2bf
3 changed files with 14 additions and 4 deletions

@ -1 +1 @@
Subproject commit fefb8d6acc78b5f63d5a78b86a4900e694bd2862
Subproject commit 81314fff0a882b72a9ad321e7a3311660125b56e

View File

@ -18,6 +18,11 @@ add_subdirectory(TestQtWidgets)
if (NOT WIN32)
add_subdirectory(QMLFileDialog)
add_subdirectory(virtualkeyboard)
add_subdirectory(quicknanobrowser)
add_subdirectory(webui)
# this tests is not actual for the qt 6.8 and later. Use WebView.
if (QT_VERSION_MAJOR LESS_EQUAL 6 AND QT_VERSION_MINOR LESS_EQUAL 7)
add_subdirectory(quicknanobrowser)
add_subdirectory(webui)
endif()
endif()

View File

@ -7,7 +7,11 @@
#include "webenginetest.h"
#if QT_VERSION < QT_VERSION_CHECK(6, 8, 0)
#include "modules.h"
#endif
#include <configparser.h>
#include <dependenciesscanner.h>
#include <filemanager.h>
@ -17,6 +21,7 @@
void WebEngineTest::test() {
#ifdef Q_OS_UNIX
#if QT_VERSION < QT_VERSION_CHECK(6, 8, 0)
TestUtils utils;
QString bin = TestBinDir + "quicknanobrowser";
@ -37,6 +42,6 @@ void WebEngineTest::test() {
runTestParams({"-bin", bin, "clear" ,
"-qmake", qmake}, &comapareTree);
#endif
#endif
}