1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-19 16:25:50 +00:00

Merge branch 'dev' into nrf52_core

This commit is contained in:
Jesse Hills
2024-10-07 12:02:12 +13:00
committed by GitHub
50 changed files with 816 additions and 201 deletions

View File

@@ -108,7 +108,7 @@ def clang_options(idedata):
cmd.extend(["-isystem", directory])
# add library include directories using -isystem to suppress their errors
for directory in sorted(set(idedata["includes"]["build"])):
for directory in list(idedata["includes"]["build"]):
# skip our own directories, we add those later
if (
not directory.startswith(f"{root_path}/")