mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-03 18:40:59 +02:00
14 lines
320 B
CMake
14 lines
320 B
CMake
# This component is not supported by ESP targets
|
|
if(${target} not STREQUAL "linux")
|
|
return()
|
|
endif()
|
|
|
|
idf_component_register(
|
|
SRCS src/safe_unity.c
|
|
INCLUDE_DIRS include
|
|
REQUIRES unity
|
|
)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PUBLIC --coverage)
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC --coverage)
|