File: cmake-4.patch

package info (click to toggle)
libatomicbitvector 0.0%2Bgit20200519.e295358-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: ansic: 245; cpp: 154; sh: 11; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 628 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: bump cmake minimum required to 3.10.
 This fixes errors and warnings caused by lower requirements with cmake
 version 4 onwards.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1113113
Forwarded: no
Last-Update: 2025-10-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libatomicbitvector.orig/CMakeLists.txt
+++ libatomicbitvector/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(atomicbitvector)