From 4e2647c6182d2f71f7ab20ae00823e66e1429efe Mon Sep 17 00:00:00 2001 From: Ashish Sharma Date: Thu, 22 May 2025 13:39:40 +0800 Subject: [PATCH] fix(mbedtls): update minimum cmake required to 3.10.2 --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b6c48cb9c..197dcbfb68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,9 @@ # We specify a minimum requirement of 3.10.2, but for now use 3.5.1 here # until our infrastructure catches up. -cmake_minimum_required(VERSION 3.5.1) +# Espressif: Updating the version to 3.10.2. CMake versions +# older than 3.10 are getting deprecated +cmake_minimum_required(VERSION 3.10.2) include(CMakePackageConfigHelpers)