aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2024-04-24 17:22:50 +0200
committerTim Jenssen <tim.jenssen@qt.io>2024-04-24 15:31:11 +0000
commit4e5498051b9b49a6442f72a48a770ac3c5fe00d7 (patch)
tree0a258ebd305aa8c99f79e4198eee568e63c38054
parent10f855f3f0fe1fd5959e6f89853376722783c837 (diff)
QmlDesigner: increase necessary Qt version to 6.5.4
Change-Id: Ib276421fb5e8c7ca55b382fc4ade0281c9f73e7c Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--CMakeLists.txt4
1 files 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)