blob: 95e76ee43f77efc6678c0b7baa9a03f33eeb932f [file] [edit]
From 8e779493cd1597b8a9c50ff48f97d4e5d10f96d6 Mon Sep 17 00:00:00 2001
From: Tobias Wellnitz <tobias@dh1tw.de>
Date: Sat, 27 Sep 2025 23:51:48 +0200
Subject: [PATCH] bumped cmake_minimum_required to Version 3.5
Modern Cmake versions require cmake_mininum_required to be at least Version 3.5
Upstream: https://github.com/quiet/libcorrect/pull/50
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2e8e07e..67ea044 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.5)
project(Correct C)
include(CheckLibraryExists)
include(CheckIncludeFiles)