aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-05-10 01:14:52 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2014-05-10 01:14:52 +0300
commit9c2364b51564f11815c2c04c08fdd53ae01ef1fa (patch)
tree3be449d608cbd37dfb07783683dc5673a4fbc607 /build.py
parenteeaa5d06840345e869d9f87ffa6988a88e49c8f5 (diff)
downloadmeson-9c2364b51564f11815c2c04c08fdd53ae01ef1fa.zip
meson-9c2364b51564f11815c2c04c08fdd53ae01ef1fa.tar.gz
meson-9c2364b51564f11815c2c04c08fdd53ae01ef1fa.tar.bz2
Started work on Vala compilation.
Diffstat (limited to 'build.py')
-rw-r--r--build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.py b/build.py
index 2608582..2bc715a 100644
--- a/build.py
+++ b/build.py
@@ -51,7 +51,8 @@ class Build:
return False
def add_compiler(self, compiler):
- if self.static_linker is None and compiler.get_language() != 'java':
+ if self.static_linker is None and compiler.get_language() != 'java'\
+ and compiler.get_language() != 'vala':
self.static_linker = self.environment.detect_static_linker(compiler)
if self.has_language(compiler.get_language()):
return