mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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.
11 lines
293 B
CMake
11 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()
|