diff options
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -65,6 +65,7 @@ class Build: self.cross_compilers = [] self.global_args = {} self.tests = [] + self.benchmarks = [] self.headers = [] self.man = [] self.data = [] @@ -108,6 +109,9 @@ class Build: def get_tests(self): return self.tests + def get_benchmarks(self): + return self.benchmarks + def get_headers(self): return self.headers |