From a22eebcb0c47f0fcd6e3589e8ed43b5da5d765ce Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sat, 25 May 2024 12:01:28 -0500 Subject: [PATCH] bump required cmake to 3.5 to remove depreciation warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb7ba0eb0..3a435d292 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ # this software. The contributing author, Izaak Beekman, retains all # rights permitted by the terms of the JSON-Fortran license. -cmake_minimum_required ( VERSION 3.0 FATAL_ERROR ) +cmake_minimum_required ( VERSION 3.5 FATAL_ERROR ) # Use MSVS folders to organize projects on windows set_property(GLOBAL PROPERTY USE_FOLDERS ON)