From ed2ec200be90d2e9d7adcf5f0d684cd1906fb623 Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Fri, 15 Nov 2024 12:19:30 -0600 Subject: [PATCH] Set cmake_minimum_required to 3.10 CI checks are failing because the cmake version requires cmake minimum requires >= 3.10. This PR addresses that issue. --- tests/CMakeLists.txt.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt.in b/tests/CMakeLists.txt.in index 2535f8f..9c7c054 100644 --- a/tests/CMakeLists.txt.in +++ b/tests/CMakeLists.txt.in @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0.2) +cmake_minimum_required(VERSION 3.10) project(googletest-download NONE) include(ExternalProject)