Skip to content

Commit c774b6f

Browse files
smarq8ivankravets
andauthored
fixing incorrect SRC_FILTER's include path (#219)
* fixing incorrect SRC_FILTER's include path * Update config.rst Co-authored-by: Ivan Kravets <me@ikravets.com>
1 parent 1e2679b commit c774b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

librarymanager/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ Project structure
546546
for item in env.get("CPPDEFINES", []):
547547
if isinstance(item, tuple) and item[0] == "HAL":
548548
env.Append(CPPPATH=[realpath(join("hal", item[1]))])
549-
env.Replace(SRC_FILTER=["+<*>", "-<hal*>", "+<hal%s>" % item[1]])
549+
env.Replace(SRC_FILTER=["+<*>", "-<hal*>", "+<hal/%s>" % item[1]])
550550
break
551551
552552
# pass flags to a global build environment (for all libraries, etc)

0 commit comments

Comments
 (0)