1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: bump required cmake to 3.10.
This fixes error and warning with cmake 4 onwards.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113404
Forwarded: no
Last-Update: 2025-10-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- physamp.orig/CMakeLists.txt
+++ physamp/CMakeLists.txt
@@ -3,7 +3,7 @@
# Created: 24/10/2014
# Global parameters
-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11)
+CMAKE_MINIMUM_REQUIRED(VERSION 3.10)
PROJECT(physamp CXX)
# Compile options
|