From 4e5498051b9b49a6442f72a48a770ac3c5fe00d7 Mon Sep 17 00:00:00 2001 From: Tim Jenssen Date: Wed, 24 Apr 2024 17:22:50 +0200 Subject: [PATCH] QmlDesigner: increase necessary Qt version to 6.5.4 Change-Id: Ib276421fb5e8c7ca55b382fc4ade0281c9f73e7c Reviewed-by: Thomas Hartmann --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d88f2491144..9f0cbb088e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,12 +78,12 @@ find_package(Qt6 REQUIRED ) -if (Qt6_VERSION VERSION_GREATER_EQUAL 6.4.3) +if (Qt6_VERSION VERSION_GREATER_EQUAL 6.5.4) option(WITH_QMLDESIGNER "Build QmlDesigner" ${ENV_QTC_WITH_QMLDESIGNER}) else() option(WITH_QMLDESIGNER "Build QmlDesigner" OFF) endif() -add_feature_info("Build QmlDesigner and related code (only if Qt is 6.4.3 or newer)" ${WITH_QMLDESIGNER} "") +add_feature_info("Build QmlDesigner and related code (only if Qt is 6.5.4 or newer)" ${WITH_QMLDESIGNER} "") # hack for Qbs which still supports Qt5 and Qt6 if (TARGET Qt6::Core5CompatPrivate)