mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
339fcbf14d
Unified Memory protection API for all PMS-aware chips - ESP32S3 port
13 lines
431 B
CMake
13 lines
431 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
if((IDF_TARGET STREQUAL "esp32s2") OR (IDF_TARGET STREQUAL "esp32c3") OR (IDF_TARGET STREQUAL "esp32s3"))
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(test_memprot)
|
|
|
|
target_link_libraries(${project_elf} PRIVATE
|
|
"-Wl,--wrap=esp_panic_handler"
|
|
"-Wl,--wrap=esp_panic_handler_reconfigure_wdts"
|
|
"-Wl,--wrap=soc_hal_stall_core")
|
|
|
|
endif()
|