From 73fd7a57f8b47946d1f0102f875e2dc092206f92 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 21 Dec 2023 09:36:38 +0100 Subject: [PATCH] Avoid warnings about CMake compatibility The full message I got is this: > CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): > Compatibility with CMake < 3.5 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. --- deps/src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/src/CMakeLists.txt b/deps/src/CMakeLists.txt index c3ff86d97..f4cb4690d 100644 --- a/deps/src/CMakeLists.txt +++ b/deps/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.01) +cmake_minimum_required(VERSION 3.5) project(libsingular_julia)