aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-01-14 01:13:55 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-01-14 01:13:55 +0200
commit3eab3901587d935498259d61f5823d9a7484fb67 (patch)
treedb9161790650a1d97f8bf3478f8c7cc85504b9af /build.py
parent73f8a69d3942c1ce6ecb0fa19afca3a46341dee3 (diff)
downloadmeson-3eab3901587d935498259d61f5823d9a7484fb67.zip
meson-3eab3901587d935498259d61f5823d9a7484fb67.tar.gz
meson-3eab3901587d935498259d61f5823d9a7484fb67.tar.bz2
Can generate configure files.
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 8fad6d4..67426c9 100644
--- a/build.py
+++ b/build.py
@@ -29,6 +29,7 @@ class Build:
self.man = []
self.data = []
self.static_linker = self.environment.detect_static_linker()
+ self.configure_files = []
def get_project(self):
return self.project
@@ -47,3 +48,6 @@ class Build:
def get_data(self):
return self.data
+
+ def get_configure_files(self):
+ return self.configure_files