We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7998650 commit 6464c62Copy full SHA for 6464c62
pio-scripts/load_usermods.py
@@ -108,10 +108,10 @@ def wrapped_ConfigureProjectLibBuilder(xenv):
108
for dep in result.depbuilders:
109
if is_wled_module(dep):
110
# Add the wled folder to the include path
111
- dep.env.PrependUnique(CPPPATH=wled_dir)
+ dep.env.PrependUnique(CPPPATH=str(wled_dir))
112
# Add WLED's own dependencies
113
for dir in extra_include_dirs:
114
- dep.env.PrependUnique(CPPPATH=dir)
+ dep.env.PrependUnique(CPPPATH=str(dir))
115
# Enforce that libArchive is not set; we must link them directly to the executable
116
if dep.lib_archive:
117
build = dep._manifest.get("build", {})
0 commit comments