aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/optinterpreter.py
diff options
context:
space:
mode:
authorMatthias Klumpp <matthias@tenstral.net>2016-08-18 10:42:12 +0200
committerMatthias Klumpp <matthias@tenstral.net>2016-08-19 03:02:51 +0200
commit56823272ab96892e4f6c8dd86842d8c930281209 (patch)
tree84587d66fd89acfbb167d372dfdc206eabcdf3d7 /mesonbuild/optinterpreter.py
parent58359c8fac09ecd06af1d389bfad8cd65e831e2a (diff)
downloadmeson-56823272ab96892e4f6c8dd86842d8c930281209.zip
meson-56823272ab96892e4f6c8dd86842d8c930281209.tar.gz
meson-56823272ab96892e4f6c8dd86842d8c930281209.tar.bz2
Implement D support
This patch adds support for the D programming language[1] to Meson. The following compilers are supported: * LDC * GDC * DMD [1]: http://dlang.org/
Diffstat (limited to 'mesonbuild/optinterpreter.py')
-rw-r--r--mesonbuild/optinterpreter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/optinterpreter.py b/mesonbuild/optinterpreter.py
index 409f9dc..e38bdb9 100644
--- a/mesonbuild/optinterpreter.py
+++ b/mesonbuild/optinterpreter.py
@@ -20,6 +20,7 @@ import os, re
forbidden_option_names = coredata.get_builtin_options()
forbidden_prefixes = {'c_': True,
'cpp_': True,
+ 'd_': True,
'rust_': True,
'fortran_': True,
'objc_': True,