2021-08-11 03:22:50 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2020-11-10 02:40:01 -05:00
|
|
|
set(srcs
|
2020-08-10 00:29:05 -04:00
|
|
|
"unity/src/unity.c")
|
|
|
|
|
|
|
|
set(includes
|
|
|
|
"include"
|
|
|
|
"unity/src")
|
2018-10-25 00:52:32 -04:00
|
|
|
|
2021-07-19 03:37:39 -04:00
|
|
|
set(requires "")
|
|
|
|
|
2018-11-29 04:06:21 -05:00
|
|
|
if(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL)
|
|
|
|
list(APPEND COMPONENT_PRIV_INCLUDEDIRS "include/priv")
|
|
|
|
endif()
|
|
|
|
|
2018-10-25 00:52:32 -04:00
|
|
|
if(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER)
|
2019-04-28 03:38:23 -04:00
|
|
|
list(APPEND srcs "unity_runner.c")
|
2022-03-31 06:16:19 -04:00
|
|
|
# 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
|
2022-03-14 07:00:59 -04:00
|
|
|
list(APPEND srcs "unity_utils_freertos.c")
|
2022-03-31 06:16:19 -04:00
|
|
|
list(APPEND requires "freertos")
|
2018-10-25 00:52:32 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_UNITY_ENABLE_FIXTURE)
|
2019-04-28 03:38:23 -04:00
|
|
|
list(APPEND srcs "unity/extras/fixture/src/unity_fixture.c")
|
2020-08-10 00:29:05 -04:00
|
|
|
list(APPEND includes "unity/extras/fixture/src")
|
|
|
|
endif()
|
|
|
|
|
2022-03-31 06:16:19 -04:00
|
|
|
list(APPEND srcs "unity_utils_memory.c")
|
|
|
|
|
2021-08-11 03:22:50 -04:00
|
|
|
if(NOT "${target}" STREQUAL "linux")
|
2020-08-10 00:29:05 -04:00
|
|
|
list(APPEND srcs "unity_port_esp32.c")
|
2022-03-31 06:16:19 -04:00
|
|
|
list(APPEND srcs "port/esp/unity_utils_memory_esp.c")
|
|
|
|
else()
|
|
|
|
list(APPEND srcs "port/linux/unity_utils_memory_linux.c")
|
2018-10-25 00:52:32 -04:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2021-07-19 03:37:39 -04:00
|
|
|
INCLUDE_DIRS ${includes}
|
|
|
|
REQUIRES ${requires})
|
2018-10-25 00:52:32 -04:00
|
|
|
|
2021-08-11 03:22:50 -04:00
|
|
|
if(NOT "${target}" STREQUAL "linux")
|
2020-08-10 00:29:05 -04:00
|
|
|
target_compile_definitions(${COMPONENT_LIB} PUBLIC
|
|
|
|
-DUNITY_INCLUDE_CONFIG_H
|
|
|
|
)
|
|
|
|
endif()
|
2018-10-25 00:52:32 -04:00
|
|
|
|
2019-11-05 06:20:26 -05:00
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-unused-const-variable)
|