From 626a6107abd8043e123bc175d6088c3872914d1d Mon Sep 17 00:00:00 2001 From: bhavyap1010 Date: Mon, 22 Sep 2025 18:14:13 -0400 Subject: [PATCH] Update minimum required CMake versions for compatibility with CMake 4.x --- deps/CMakeLists.txt | 2 +- deps/protobuf/cmake/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index 858e6a02f..5a95b9166 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0.0) +cmake_minimum_required(VERSION 3.10.0) project(deps) set(protobuf_BUILD_TESTS OFF CACHE BOOL "Build tests") diff --git a/deps/protobuf/cmake/CMakeLists.txt b/deps/protobuf/cmake/CMakeLists.txt index 51e8478f6..d7ad6a5e2 100644 --- a/deps/protobuf/cmake/CMakeLists.txt +++ b/deps/protobuf/cmake/CMakeLists.txt @@ -1,5 +1,5 @@ # Minimum CMake required -cmake_minimum_required(VERSION 3.1.3) +cmake_minimum_required(VERSION 3.5.0) if(protobuf_VERBOSE) message(STATUS "Protocol Buffers Configuring...")