From 057628b86f3d3a183961422f7bbaefb81eb067cb Mon Sep 17 00:00:00 2001 From: Antoine Hoarau Date: Wed, 27 Mar 2024 13:25:01 +0100 Subject: [PATCH 1/2] fix compatiblity warning on CMake >= 3.27 CMake >= 3.27 indicated that compatiblity with CMake < 3.5 will be removed from a future version CMake and that we can either update the min or use the ... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 25f6548..9b30cc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Minimum version required -cmake_minimum_required (VERSION 3.2) +cmake_minimum_required (VERSION 3.2...3.5) set(QDLDL_VERSION_MAJOR "0") set(QDLDL_VERSION_MINOR "1") From 80d67b4a4efc82270249cf57a6ae078d580c50f9 Mon Sep 17 00:00:00 2001 From: Antoine Hoarau Date: Fri, 5 Apr 2024 13:53:51 +0200 Subject: [PATCH 2/2] bump min cmake version to 3.5 Co-authored-by: Ian McInerney --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b30cc8..26db59c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Minimum version required -cmake_minimum_required (VERSION 3.2...3.5) +cmake_minimum_required (VERSION 3.5) set(QDLDL_VERSION_MAJOR "0") set(QDLDL_VERSION_MINOR "1")