1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: bump cmake minimum requirement to 3.10.
This fixes errors and warnings raised by cmake 4 onwards.
Forwarding is not needed because cmake is Debian specific.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1112866
Forwarded: not-needed
Last-Update: 2025-10-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- edflib.orig/CMakeLists.txt
+++ edflib/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.10)
# Author: Mathieu Malaterre / BSD (as upstream)
project(edflib C)
|