1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: bump minimum cmake version 3.10.
This gets us rid of build failures with cmake 4 and also a warning
about version too old.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113115
Forwarded: no
Last-Update: 2025-09-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libbpp-core.orig/CMakeLists.txt
+++ libbpp-core/CMakeLists.txt
@@ -5,7 +5,7 @@
# Francois Gindraud (2017)
# Created: 17/09/2010
-cmake_minimum_required (VERSION 2.8.11)
+cmake_minimum_required (VERSION 3.10)
project (bpp-core CXX)
# Compile options
|