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 GitHub
parent 358b7f50a7
commit b113190563

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)