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)
|