From f5d9627fdc17b78fe045f26e1b3555243d96362e Mon Sep 17 00:00:00 2001 From: ZeldaZach Date: Thu, 11 Sep 2025 14:46:36 -0400 Subject: [PATCH] Require min 3.10 for external deps --- .ci/compile.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/compile.sh b/.ci/compile.sh index ffe733c72..2938e0902 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -95,6 +95,9 @@ fi mkdir -p "$BUILD_DIR" cd "$BUILD_DIR" +# Set minimum CMake Version +export CMAKE_POLICY_VERSION_MINIMUM=3.10 + # Add cmake flags flags=("-DCMAKE_BUILD_TYPE=$BUILDTYPE") if [[ $MAKE_SERVER ]]; then