mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-20 18:37:35 +08:00
Scope parameter included in build by cmake/configs
Conflicts: Tools/px_generate_params.py src/lib/ecl
This commit is contained in:
committed by
Lorenz Meier
parent
93d261a558
commit
64d43ad381
@@ -33,6 +33,8 @@ class SourceScanner(object):
|
||||
Scans provided file and passes its contents to the parser using
|
||||
parser.Parse method.
|
||||
"""
|
||||
prefix = ".." + os.path.sep + "src" + os.path.sep
|
||||
scope = re.sub(prefix, '', os.path.dirname(os.path.relpath(path)))
|
||||
with codecs.open(path, 'r', 'utf-8') as f:
|
||||
try:
|
||||
contents = f.read()
|
||||
@@ -40,4 +42,4 @@ class SourceScanner(object):
|
||||
contents = ''
|
||||
print('Failed reading file: %s, skipping content.' % path)
|
||||
pass
|
||||
return parser.Parse(contents)
|
||||
return parser.Parse(scope, contents)
|
||||
|
||||
Reference in New Issue
Block a user