mirror of
https://github.com/hathach/tinyusb.git
synced 2025-02-23 18:40:18 +00:00
- added back pre-existing board directories which now just select PICO_BOARD - added boards/pico_sdk which just uses the pre-existing PICO_BOARD setting - fixed rp2040/family.cmake to include the magic string "CFG_TUSB_MCU=OPT_MCU_RP2040" expected by build_family.py
11 lines
376 B
CMake
11 lines
376 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
# Add example src and bsp directories
|
|
set(EXTRA_COMPONENT_DIRS "src" "${TOP}/hw/bsp/esp32s2/boards" "${TOP}/hw/bsp/esp32s2/components")
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
set(SUPPORTED_TARGETS esp32s2)
|
|
|
|
# include basic family CMake functionality
|
|
set(FAMILY_MCUS ESP32S2)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../family.cmake)
|