From 10ec06ebf651e2c2a3b734fe9028b77155227403 Mon Sep 17 00:00:00 2001 From: Bronek Kozicki Date: Thu, 10 Jul 2025 16:46:02 +0100 Subject: [PATCH] Downgrade required CMake version for Antithesis SDK (#5548) The current version was copied from `antithesis-sdk-cpp` but there is no logical reason to require this specific version of CMake. This change downgrades the version to make the project build with older CMake versions. --- external/antithesis-sdk/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/antithesis-sdk/CMakeLists.txt b/external/antithesis-sdk/CMakeLists.txt index d2c1f536a..46c7b4bf7 100644 --- a/external/antithesis-sdk/CMakeLists.txt +++ b/external/antithesis-sdk/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.25) +cmake_minimum_required(VERSION 3.18) # Note, version set explicitly by rippled project project(antithesis-sdk-cpp VERSION 0.4.4 LANGUAGES CXX)