From 56ac76d4d23dc46efee5ee8692ed49bb75baef0e Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Fri, 4 Apr 2025 09:23:34 +0200 Subject: [PATCH] fix(esp_coex/cmake): avoid using uninitialized srcs variable Signed-off-by: Frantisek Hrbata --- components/esp_coex/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/esp_coex/CMakeLists.txt b/components/esp_coex/CMakeLists.txt index e6f8699772..a1da2af74c 100644 --- a/components/esp_coex/CMakeLists.txt +++ b/components/esp_coex/CMakeLists.txt @@ -1,5 +1,7 @@ idf_build_get_property(idf_target IDF_TARGET) +set(srcs "") + if(${idf_target} STREQUAL "linux") return() # This component is not supported by the POSIX/Linux simulator endif()