aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-01-12 14:31:43 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-01-12 14:31:43 +0200
commit5969b1ed334454ff6907c521493d635bfb878456 (patch)
treeb3d6f9478695f17cd545d6720359b0a282735970 /build.py
parent8d038ef09ed709f7db95504f04b13678ecf79816 (diff)
downloadmeson-5969b1ed334454ff6907c521493d635bfb878456.zip
meson-5969b1ed334454ff6907c521493d635bfb878456.tar.gz
meson-5969b1ed334454ff6907c521493d635bfb878456.tar.bz2
Can install Man 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 96e345f..688f016 100644
--- a/build.py
+++ b/build.py
@@ -26,6 +26,7 @@ class Build:
self.compilers = []
self.tests = []
self.headers = []
+ self.man = []
self.static_linker = self.environment.detect_static_linker()
def get_project(self):
@@ -39,3 +40,6 @@ class Build:
def get_headers(self):
return self.headers
+
+ def get_man(self):
+ return self.man