1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: bump minimum cmake to 3.10.
Fix build failures and warnings with cmake 4.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113174
Forwarded: no
Last-Update: 2025-10-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libmmmulti.orig/CMakeLists.txt
+++ libmmmulti/CMakeLists.txt
@@ -1,6 +1,6 @@
# Specify the minimum version for CMake
-cmake_minimum_required(VERSION 3.1)
+cmake_minimum_required(VERSION 3.10)
# Project's name
project(mmmulti)
|