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 <angus@redyak.com.au>
This commit is contained in:
Angus Gratton 2026-01-22 17:21:33 +11:00 committed by Damien George
parent a63cc639f2
commit 5e04827725

View File

@ -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)