fix(esp_hal_i2c/cmake): fix the usage of the uninitialized variable

The `includes` list variable is used without initialization. Initialize
it explicitly.

Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
This commit is contained in:
Frantisek Hrbata
2025-09-24 20:21:47 +02:00
parent 041756d274
commit ce5646b354
+1
View File
@@ -1,5 +1,6 @@
idf_build_get_property(target IDF_TARGET)
set(includes)
list(APPEND includes "${target}/include")
list(APPEND includes "include")