From 341284a7caefb6bf8441acd902108b1d024ded3c Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Tue, 25 Apr 2023 07:46:11 +1000 Subject: [PATCH] Require Qt 6.4 or later for Qt6 builds Given that these are experimental anyway, it makes little sense to waste efforts supporting older Qt 6 releases...! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e855be2594..8eef2104fbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -443,7 +443,7 @@ if(WITH_CORE) set (BUILD_WITH_QT6 FALSE CACHE BOOL "Enable (experimental) Qt6 support") if (BUILD_WITH_QT6) - set(QT_MIN_VERSION 6.0.0) + set(QT_MIN_VERSION 6.4.0) set(QT_VERSION_BASE "Qt6") set(QT_VERSION_BASE_LOWER "qt6") set(CMAKE_CXX_STANDARD 17)