From fb58003451bdcc26dd70ea802ac7e43aab904762 Mon Sep 17 00:00:00 2001 From: Ron El Date: Fri, 3 Oct 2025 10:29:32 +0930 Subject: [PATCH] Bump the min required KF version to 6.16 This became required by de97275a387abcbca6fcb185bcbd1b69c30f5c66 because Kirigami.ColumnView.preferredWidth did not exist before then. Reverting that commit enables this to still build with 6.13. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3760c3445..625a6b4dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_ project(NeoChat VERSION ${RELEASE_SERVICE_VERSION}) -set(KF_MIN_VERSION "6.12") +set(KF_MIN_VERSION "6.16") set(QT_MIN_VERSION "6.5") find_package(ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)