aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Reference-manual.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-09-18 20:23:56 +0300
committerGitHub <noreply@github.com>2017-09-18 20:23:56 +0300
commit076f3c53bd4d959448507eb904ed9d5890a6f121 (patch)
tree68ef3357b7cd46c4d5c6b94d0c3fdf2f3079c4b1 /docs/markdown/Reference-manual.md
parent0b0448f8f2b062355242c86bb59c2596789fd90f (diff)
parentc3c37fac38dcea1f00cb6750722b39704ef8fc10 (diff)
downloadmeson-076f3c53bd4d959448507eb904ed9d5890a6f121.zip
meson-076f3c53bd4d959448507eb904ed9d5890a6f121.tar.gz
meson-076f3c53bd4d959448507eb904ed9d5890a6f121.tar.bz2
Merge pull request #2263 from ximion/dlang
d: Add an easy way to use D-specific features
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r--docs/markdown/Reference-manual.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index 1bed44d..2025ab5 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -424,6 +424,10 @@ be passed to [shared and static libraries](#library).
- `override_options` takes an array of strings in the same format as
`project`'s `default_options` overriding the values of these options
for this target only, since 0.40.0
+- `d_import_dirs` list of directories to look in for string imports used
+ in the D programmling language
+- `d_unittest`, when set to true, the D modules are compiled in debug mode
+- `d_module_versions` list of module versions set when compiling D sources
The list of `sources`, `objects`, and `dependencies` is always
flattened, which means you can freely nest and add lists while
@@ -835,7 +839,7 @@ This function prints its argument to stdout.
The first argument to this function must be a string defining the name
of this project. It is followed by programming languages that the
project uses. Supported values for languages are `c`, `cpp` (for
-`C++`), `objc`, `objcpp`, `fortran`, `java`, `cs` (for `C#`) and
+`C++`), `d`, `objc`, `objcpp`, `fortran`, `java`, `cs` (for `C#`) and
`vala`. In versions before `0.40.0` you must have at least one
language listed.