| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 
 | Description: bump cmake requirement to 3.10.
 This fixes errors and warnings with cmake 4.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1112722
Forwarded: no
Last-Update: 2025-10-15
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- bcalm.orig/CMakeLists.txt
+++ bcalm/CMakeLists.txt
@@ -1,6 +1,6 @@
 project(bcalm)
 
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.10)
 
 ################################################################################
 # Shortcuts
 |