mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f27c9c5139
Closes IDF-2641
8 lines
358 B
CMake
8 lines
358 B
CMake
if( IDF_TARGET STREQUAL "esp32s2" )
|
|
idf_component_register(SRCS "esp32s2/test_memprot_main.c" "esp32s2/test_panic.c"
|
|
INCLUDE_DIRS "")
|
|
elseif( IDF_TARGET STREQUAL "esp32c3" )
|
|
idf_component_register(SRCS "esp32c3/test_memprot_main.c" "esp32c3/test_panic.c" "esp32c3/return_from_panic.S"
|
|
INCLUDE_DIRS "")
|
|
endif()
|