mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
1ac3fc79b7
This allows using unity fixture in Linux host tests
52 lines
1.4 KiB
CMake
52 lines
1.4 KiB
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
set(srcs
|
|
"unity/src/unity.c")
|
|
|
|
set(includes
|
|
"include"
|
|
"unity/src")
|
|
|
|
set(requires "")
|
|
|
|
if(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL)
|
|
list(APPEND COMPONENT_PRIV_INCLUDEDIRS "include/priv")
|
|
endif()
|
|
|
|
if(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER)
|
|
list(APPEND srcs "unity_runner.c")
|
|
# Note the following files are not compatible with the Linux target.
|
|
# On Linux, these are masked because we also don't use the IDF test runner there
|
|
list(APPEND srcs "unity_utils_freertos.c" "unity_utils_cache.c")
|
|
list(APPEND requires "freertos")
|
|
endif()
|
|
|
|
if(CONFIG_UNITY_ENABLE_FIXTURE)
|
|
list(APPEND srcs "unity/extras/fixture/src/unity_fixture.c")
|
|
list(APPEND includes "unity/extras/fixture/src")
|
|
endif()
|
|
|
|
list(APPEND srcs "unity_utils_memory.c")
|
|
|
|
if(NOT "${target}" STREQUAL "linux")
|
|
list(APPEND srcs "unity_port_esp32.c")
|
|
list(APPEND srcs "port/esp/unity_utils_memory_esp.c")
|
|
else()
|
|
list(APPEND srcs "unity_port_linux.c")
|
|
list(APPEND srcs "port/linux/unity_utils_memory_linux.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS ${includes}
|
|
REQUIRES ${requires})
|
|
|
|
if(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER)
|
|
idf_component_optional_requires(PRIVATE spi_flash)
|
|
endif()
|
|
|
|
target_compile_definitions(${COMPONENT_LIB} PUBLIC
|
|
-DUNITY_INCLUDE_CONFIG_H
|
|
)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-unused-const-variable)
|