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 0973ab9..ca87c26 100644
--- a/build.py
+++ b/build.py
@@ -77,6 +77,7 @@ class Build:
self.subprojects = {}
self.pkgconfig_gens = []
self.install_script = None
+ self.install_dirs = []
def has_language(self, language):
for i in self.compilers:
@@ -120,6 +121,9 @@ class Build:
def get_configure_files(self):
return self.configure_files
+ def get_install_subdirs(self):
+ return self.install_dirs
+
def get_global_args(self, compiler):
return self.global_args.get(compiler.get_language(), [])