73851e0b5c
soc unit tests have not been included when compiling with CMake, because ../${SOC_NAME}/test was not evaluated relative to the CMakeLists.txt directory. Also call register_components() regardless of the presence of test directory for particular target.
10 lines
293 B
CMake
10 lines
293 B
CMake
set(SOC_NAME ${IDF_TARGET})
|
|
set(SOC_TEST_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../${SOC_NAME}/test)
|
|
if(EXISTS "${SOC_TEST_DIR}")
|
|
set(COMPONENT_SRCDIRS "${SOC_TEST_DIR}")
|
|
set(COMPONENT_ADD_INCLUDEDIRS "${SOC_TEST_DIR}")
|
|
endif()
|
|
|
|
set(COMPONENT_REQUIRES unity test_utils)
|
|
|
|
register_component()
|