From 5e0482772579e4252c846423b569115eff2be612 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 22 Jan 2026 17:21:33 +1100 Subject: [PATCH] esp32: Increase minimum CMake version to 3.16. ESP-IDF v5.5.x requires min 3.16 This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton --- ports/esp32/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/esp32/CMakeLists.txt b/ports/esp32/CMakeLists.txt index 9d6be8010..ee062be20 100644 --- a/ports/esp32/CMakeLists.txt +++ b/ports/esp32/CMakeLists.txt @@ -3,7 +3,8 @@ # Note for maintainers: Where possible, functionality should be put into # esp32_common.cmake not this file. This is because this CMakeLists.txt file # needs to be duplicated for out-of-tree builds, and can easily get out of date. -cmake_minimum_required(VERSION 3.12) + +cmake_minimum_required(VERSION 3.16) # Set the board if it's not already set. if(NOT MICROPY_BOARD)