MCUXpresso_MIMXRT1052xxxxB/components/exception_handling/component_exception_handlin...

23 lines
656 B
CMake

# Add set(CONFIG_USE_component_exception_handling_cm7 true) in config.cmake to use this component
include_guard(GLOBAL)
message("${CMAKE_CURRENT_LIST_FILE} component is included.")
if(CONFIG_USE_driver_common AND CONFIG_USE_utility_debug_console)
if(CONFIG_CORE STREQUAL cm7f)
target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE
${CMAKE_CURRENT_LIST_DIR}/cm7/fsl_component_exception_handling.c
)
endif()
target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC
${CMAKE_CURRENT_LIST_DIR}/.
)
else()
message(SEND_ERROR "component_exception_handling_cm7.MIMXRT1052 dependency does not meet, please check ${CMAKE_CURRENT_LIST_FILE}.")
endif()