esp32/CMakeLists.txt: Require CMake version 3.12.

Because "find_package(Python3 ...)" requires at least this version of
CMake.  And other features like GREATER_EQUAL and COMMAND_EXPAND_LISTS need
at least CMake 3.7 and 3.8 respectively.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2021-04-22 10:26:52 +10:00
parent 178198a01d
commit df4e9bdf5c
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Top-level cmake file for building MicroPython on ESP32.
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.12)
# Set the location of this port's directory.
set(MICROPY_PORT_DIR ${CMAKE_SOURCE_DIR})