mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f27c9c5139
Closes IDF-2641
10 lines
271 B
CMake
10 lines
271 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
if((IDF_TARGET STREQUAL "esp32s2") OR (IDF_TARGET STREQUAL "esp32c3"))
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(test_memprot)
|
|
|
|
target_link_libraries(${project_elf} "-Wl,--wrap=esp_panic_handler")
|
|
|
|
endif()
|