2019-05-10 02:53:08 +00:00
|
|
|
idf_build_get_property(soc_name IDF_TARGET)
|
|
|
|
get_filename_component(soc_test "${CMAKE_CURRENT_SOURCE_DIR}/../${soc_name}/test" ABSOLUTE)
|
|
|
|
if(EXISTS "${soc_test}")
|
|
|
|
set(COMPONENT_SRCS "${soc_test}")
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "${soc_test}")
|
2019-03-19 03:42:51 +00:00
|
|
|
endif()
|
2018-08-27 02:48:16 +00:00
|
|
|
|
2019-03-19 03:42:51 +00:00
|
|
|
set(COMPONENT_REQUIRES unity test_utils)
|
2018-08-27 02:48:16 +00:00
|
|
|
|
2019-03-19 03:42:51 +00:00
|
|
|
register_component()
|