mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
16 lines
462 B
CMake
16 lines
462 B
CMake
|
idf_component_register(SRCS "main.c"
|
||
|
INCLUDE_DIRS "."
|
||
|
REQUIRES freertos soc)
|
||
|
|
||
|
target_compile_options(${COMPONENT_TARGET} PUBLIC
|
||
|
"-DCFG_TUSB_MCU=OPT_MCU_ESP32S2"
|
||
|
"-DCFG_TUSB_OS=OPT_OS_FREERTOS"
|
||
|
)
|
||
|
|
||
|
idf_component_get_property( FREERTOS_ORIG_INCLUDE_PATH freertos ORIG_INCLUDE_PATH)
|
||
|
target_include_directories(${COMPONENT_TARGET} PUBLIC
|
||
|
"${FREERTOS_ORIG_INCLUDE_PATH}"
|
||
|
"${TOP}/hw"
|
||
|
"${TOP}/src"
|
||
|
)
|