aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.py b/build.py
index 61a51f4..96e345f 100644
--- a/build.py
+++ b/build.py
@@ -25,6 +25,7 @@ class Build:
self.targets = {}
self.compilers = []
self.tests = []
+ self.headers = []
self.static_linker = self.environment.detect_static_linker()
def get_project(self):
@@ -35,3 +36,6 @@ class Build:
def get_tests(self):
return self.tests
+
+ def get_headers(self):
+ return self.headers