We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8baec2 commit bb6037bCopy full SHA for bb6037b
pio-scripts/load_usermods.py
@@ -69,7 +69,10 @@ def cplb_wrapper(xenv):
69
wled_dir = xenv["PROJECT_SRC_DIR"]
70
um_deps = [dep for dep in lib_builders if usermod_dir in Path(dep.src_dir).parents]
71
other_deps = [dep for dep in lib_builders if usermod_dir not in Path(dep.src_dir).parents]
72
+ for dep in lib_builders:
73
+ print(f"Found dep: {str(dep)}")
74
for um in um_deps:
75
+ print(f"Adding properties to {str(um)} - {wled_dir}")
76
# Add the wled folder to the include path
77
um.env.PrependUnique(CPPPATH=wled_dir)
78
# Add WLED's own dependencies
0 commit comments