From 3c4741c47d36bc519e21b0d94b271cee7a9b09df Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sat, 16 Nov 2024 16:32:21 +0100 Subject: [PATCH] Update minimum cmake version to 3.10 This is to prevent the following warning: 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 a ... suffix to tell CMake that the project does not need compatibility with older versions. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d5df1afe..8dae55e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project (luv C ASM)