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.
This commit is contained in:
Bronek Kozicki
2025-07-10 16:46:02 +01:00
committed by tequ
parent 6d86df3ff5
commit 10ec06ebf6

View File

@@ -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)