From 567522ea9dc98d2163494ae349a923395821d4ca Mon Sep 17 00:00:00 2001 From: Green Sky Date: Tue, 6 Jan 2026 18:10:27 +0100 Subject: [PATCH] fix cmake version ranges --- CMakeLists.txt | 2 +- external/CMakeLists.txt | 2 +- external/zstd/CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- test/CMakeLists.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a683bd..03e7223 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.24 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR) # cmake setup begin project(solanaceae_object_store) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 9b76966..e42b440 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.24 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR) include(FetchContent) diff --git a/external/zstd/CMakeLists.txt b/external/zstd/CMakeLists.txt index d2662a9..200bed2 100644 --- a/external/zstd/CMakeLists.txt +++ b/external/zstd/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.24 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR) include(FetchContent) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f9d4e13..87b860e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR) project(solanaceae) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e9f9c98..25835b2 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR) project(solanaceae)