From f8e1ee35e297ba8e65bdde798f317af00882af61 Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Sat, 16 Nov 2019 15:22:00 +0700 Subject: [PATCH] soc: fix unit tests not included in the build Regression from 9eccd7c0826d6cc2e9de59304d1e5f76c0063ccf --- components/soc/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/test/CMakeLists.txt b/components/soc/test/CMakeLists.txt index 619190b15..c64b31f1b 100644 --- a/components/soc/test/CMakeLists.txt +++ b/components/soc/test/CMakeLists.txt @@ -2,7 +2,7 @@ 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(srcs "${soc_test}") + set(src_dirs "${soc_test}") set(include_dirs "${soc_test}") endif()