esp-idf/tools/test_apps/system/memprot/main/CMakeLists.txt
Martin Vychodil 339fcbf14d System/Security: Memprot API unified (ESP32S3)
Unified Memory protection API for all PMS-aware chips - ESP32S3 port
2022-06-20 02:36:44 +00:00

11 lines
520 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 "")
elseif( IDF_TARGET STREQUAL "esp32s3" )
idf_component_register(SRCS "esp32s3/test_memprot_main.c" "esp32s3/test_panic.c"
INCLUDE_DIRS "")
endif()