2021-08-11 07:22:50 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2020-11-10 07:40:01 +00:00
|
|
|
set(srcs
|
2020-08-10 04:29:05 +00:00
|
|
|
"unity/src/unity.c")
|
|
|
|
|
|
|
|
set(includes
|
|
|
|
"include"
|
|
|
|
"unity/src")
|
2018-10-25 04:52:32 +00:00
|
|
|
|
2021-07-19 07:37:39 +00:00
|
|
|
set(requires "")
|
|
|
|
|
2018-11-29 09:06:21 +00:00
|
|
|
if(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL)
|
|
|
|
list(APPEND COMPONENT_PRIV_INCLUDEDIRS "include/priv")
|
|
|
|
endif()
|
|
|
|
|
2018-10-25 04:52:32 +00:00
|
|
|
if(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER)
|
2019-04-28 07:38:23 +00:00
|
|
|
list(APPEND srcs "unity_runner.c")
|
2018-10-25 04:52:32 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_UNITY_ENABLE_FIXTURE)
|
2019-04-28 07:38:23 +00:00
|
|
|
list(APPEND srcs "unity/extras/fixture/src/unity_fixture.c")
|
2020-08-10 04:29:05 +00:00
|
|
|
list(APPEND includes "unity/extras/fixture/src")
|
|
|
|
endif()
|
|
|
|
|
2021-08-11 07:22:50 +00:00
|
|
|
if(NOT "${target}" STREQUAL "linux")
|
2020-08-10 04:29:05 +00:00
|
|
|
list(APPEND srcs "unity_port_esp32.c")
|
2018-10-25 04:52:32 +00:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2021-07-19 07:37:39 +00:00
|
|
|
INCLUDE_DIRS ${includes}
|
|
|
|
REQUIRES ${requires})
|
2018-10-25 04:52:32 +00:00
|
|
|
|
2021-08-11 07:22:50 +00:00
|
|
|
if(NOT "${target}" STREQUAL "linux")
|
2020-08-10 04:29:05 +00:00
|
|
|
target_compile_definitions(${COMPONENT_LIB} PUBLIC
|
|
|
|
-DUNITY_INCLUDE_CONFIG_H
|
|
|
|
)
|
|
|
|
endif()
|
2018-10-25 04:52:32 +00:00
|
|
|
|
2019-11-05 11:20:26 +00:00
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-unused-const-variable)
|