You've already forked uiflow-micropython
mirror of
https://github.com/m5stack/uiflow-micropython.git
synced 2026-05-20 10:39:27 -07:00
d8c9a4e919
1. support esp32-p4. 2. still using i2c-driver. Signed-off-by: lbuque <lbuque@163.com>
16 lines
464 B
CMake
16 lines
464 B
CMake
# SPDX-FileCopyrightText: 2025 M5Stack Technology CO LTD
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Set location of base MicroPython directory.
|
|
if(NOT MICROPY_DIR)
|
|
get_filename_component(MICROPY_DIR ${PROJECT_DIR}/../micropython/ ABSOLUTE)
|
|
endif()
|
|
|
|
# Set location of the ESP32 port directory.
|
|
if(NOT MICROPY_PORT_DIR)
|
|
get_filename_component(MICROPY_PORT_DIR ${CMAKE_CURRENT_LIST_DIR}/.. ABSOLUTE)
|
|
endif()
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../esp32_common.cmake)
|