From 6c8ca778b220a1eae0f5d49101cd8f52f771e3ab Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Sun, 17 Aug 2025 08:19:11 -0600 Subject: [PATCH] Increase frameworks dependency version to 6.16 de97275a387abcbca6fcb185bcbd1b69c30f5c66 here in NeoChat depends on de05764b4764d5641c647bb75bdf184522f63989 in Kirigami. However, that Kirigami commit only landed in Frameworks 6.16, while the minimum Frameworks version specified here in NeoChat's CMake remained at 6.12. Because the CMake dependency version wasn't set to 6.16, a potential build-time error was converted into a potential runtime error. And that's exactly what happened for NeoChat's 25.08 Flatpak packaging, because the KDE Runtime doesn't yet have Frameworks 6.16 in it. CCBUG: 508298 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd063113d..e6541d9be 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)