From e95b81f1f7b95161fbda81fa5e931e3bcb193ccf Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Thu, 3 Apr 2025 00:41:05 -0700 Subject: [PATCH] CMake: Bump to 3.10 minimum This really is only needed to get CMake to stop yelling at us... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c7413c1f..f7e84cf0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.3) +cmake_minimum_required(VERSION 3.10) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/src/platform/cmake/") if(POLICY CMP0025)