mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Closes: https://bugs.gentoo.org/964580 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
Source: https://github.com/shlomif/rinutils/pull/7
|
|
|
|
From e872b44309ef2df02055c2da2f438ed1d5afede6 Mon Sep 17 00:00:00 2001
|
|
From: Andreas Sturmlechner <asturm@gentoo.org>
|
|
Date: Sat, 18 Oct 2025 22:41:36 +0200
|
|
Subject: [PATCH] Raise CMake minimum version to 3.10..3.31 range
|
|
|
|
CMake 3.10 was released in 2017. Fixes warning since CMake-3.31:
|
|
|
|
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
|
|
Compatibility with CMake < 3.10 will be removed from a future version of
|
|
CMake.
|
|
|
|
Update the VERSION argument value. Or, use the ... syntax
|
|
to tell CMake that the project requires at least but has been updated
|
|
to work with policies introduced by or earlier.
|
|
|
|
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
|
|
---
|
|
CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index fd6ea92..6910899 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,4 +1,4 @@
|
|
-CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
|
|
+CMAKE_MINIMUM_REQUIRED(VERSION 3.10..3.31)
|
|
PROJECT(rinutils)
|
|
|
|
INCLUDE ("${CMAKE_SOURCE_DIR}/cmake/shlomif_common_bootstrap.cmake")
|
|
--
|
|
2.51.1
|
|
|