···11+From f036950f1ccc3ebdfe2fdc0a52d35a4620252901 Mon Sep 17 00:00:00 2001
22+From: Grimmauld <Grimmauld@grimmauld.de>
33+Date: Sat, 27 Sep 2025 11:43:21 +0200
44+Subject: [PATCH] Build: update cmake minimum version to 3.10
55+66+cmake ABI compatibility with cmake <3.5 has been removed in cmake 4.
77+Compatibility with cmake <3.10 is deprecated and soon to be removed.
88+Thus set 3.10 minimum version. This is available in the vast majority
99+of current linux distributions, as well as other platforms.
1010+---
1111+ CMakeLists.txt | 2 +-
1212+ 1 file changed, 1 insertion(+), 1 deletion(-)
1313+1414+diff --git a/CMakeLists.txt b/CMakeLists.txt
1515+index 95abbe213..2d14b2552 100644
1616+--- a/CMakeLists.txt
1717++++ b/CMakeLists.txt
1818+@@ -18,7 +18,7 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
1919+ endif()
2020+ endif()
2121+2222+-cmake_minimum_required(VERSION 2.6)
2323++cmake_minimum_required(VERSION 3.10)
2424+2525+2626+ #-----------------------------------------------------------------------------