1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: bump cmake_required_minimum to 3.10.
This is an attempt to allow building the package with cmake 4 onwards.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113144
Forwarded: no
Last-Update: 2025-10-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libedlib.orig/CMakeLists.txt
+++ libedlib/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project(edlib VERSION 1.2.7)
option(EDLIB_ENABLE_INSTALL "Generate the install target" ON)
|