mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
Bug: https://bugs.gentoo.org/949101 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
21 lines
620 B
Diff
21 lines
620 B
Diff
From 5282442e48c90492f847d6afa4968c50119846bd Mon Sep 17 00:00:00 2001
|
|
From: Pierre Wendling <pierre.wendling.4@gmail.com>
|
|
Date: Mon, 10 Apr 2023 11:59:39 -0400
|
|
Subject: [PATCH] CMake: Modernise
|
|
|
|
asturm 2025-05-23: Just raise cmake_minimum_required for CMake 4.
|
|
|
|
---
|
|
CMakeLists.txt | 1 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index bd89fa1..783250e 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,4 +1,4 @@
|
|
-cmake_minimum_required(VERSION 3.1)
|
|
+cmake_minimum_required(VERSION 3.10)
|
|
project(libdumb C)
|
|
include(GNUInstallDirs)
|
|
include(CheckCCompilerFlag)
|