aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-02-09 00:00:03 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-02-09 00:00:03 +0200
commitb3074e49ebb34396d565c0f71179ae1c84d65584 (patch)
tree9556be518a61a0573f69ad150712552cce517b80 /environment.py
parent7ea37a733e6fe6ca36c98d57bbaba3b8f9d2bbfa (diff)
downloadmeson-b3074e49ebb34396d565c0f71179ae1c84d65584.zip
meson-b3074e49ebb34396d565c0f71179ae1c84d65584.tar.gz
meson-b3074e49ebb34396d565c0f71179ae1c84d65584.tar.bz2
Made C++ work in Ninja.
Diffstat (limited to 'environment.py')
-rwxr-xr-xenvironment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py
index 4e415ec..e63e3b3 100755
--- a/environment.py
+++ b/environment.py
@@ -86,7 +86,7 @@ class CCompiler():
class CXXCompiler(CCompiler):
def __init__(self, exelist):
CCompiler.__init__(self, exelist)
- self.language = 'c++'
+ self.language = 'cxx'
def can_compile(self, filename):
suffix = filename.split('.')[-1]