10000 esp32/CMakeLists.txt: Require CMake version 3.12. · micropython/micropython@df4e9bd · GitHub
[go: up one dir, main page]

Skip to content

Commit df4e9bd

Browse files
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>
1 parent 178198a commit df4e9bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/esp32/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Top-level cmake file for building MicroPython on ESP32.
22

3-
cmake_minimum_required(VERSION 3.5)
3+
cmake_minimum_required(VERSION 3.12)
44

55
# Set the location of this port's directory.
66
set(MICROPY_PORT_DIR ${CMAKE_SOURCE_DIR})

0 commit comments

Comments
 (0)
0