Browse Source

waf: reduce scope of ant_glob() patterns

And reduce pre-build execution time.
master
Gustavo Jose de Sousa 9 years ago committed by Lucas De Marchi
parent
commit
ef0fb97fe4
  1. 9
      wscript

9
wscript

@ -266,8 +266,9 @@ def _build_recursion(bld): @@ -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): @@ -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…
Cancel
Save