mirror of https://github.com/ArduPilot/ardupilot
waf: reduce scope of ant_glob() patterns
And reduce pre-build execution time.
This commit is contained in:
parent
e3934fac80
commit
ef0fb97fe4
9
wscript
9
wscript
|
@ -266,8 +266,9 @@ def _build_recursion(bld):
|
|||
'*',
|
||||
'Tools/*',
|
||||
'libraries/*/examples/*',
|
||||
'**/tests',
|
||||
'**/benchmarks',
|
||||
'libraries/*/tests',
|
||||
'libraries/*/utility/tests',
|
||||
'libraries/*/benchmarks',
|
||||
]
|
||||
|
||||
common_dirs_excl = [
|
||||
|
@ -277,8 +278,8 @@ def _build_recursion(bld):
|
|||
]
|
||||
|
||||
hal_dirs_patterns = [
|
||||
'libraries/%s/**/tests',
|
||||
'libraries/%s/**/benchmarks',
|
||||
'libraries/%s/*/tests',
|
||||
'libraries/%s/*/benchmarks',
|
||||
'libraries/%s/examples/*',
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue