diff options
author | Ethan R <35916076+AN3223@users.noreply.github.com> | 2019-01-09 12:16:38 -0600 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-01-09 23:46:38 +0530 |
commit | 530aec0bbe3b83153be4d29370151d2a0904cac3 (patch) | |
tree | c9c90c9abd32de36e2f67eef634442f208d7b802 | |
parent | 8f24d34e31f621b76ae5f564c0fcf3e99bd72930 (diff) | |
download | meson-530aec0bbe3b83153be4d29370151d2a0904cac3.zip meson-530aec0bbe3b83153be4d29370151d2a0904cac3.tar.gz meson-530aec0bbe3b83153be4d29370151d2a0904cac3.tar.bz2 |
Added Rust to supported languages for project() (#4750) [skip ci]
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 1e0a11c..3d4379a 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1109,8 +1109,8 @@ This function prints its argument to stdout prefixed with WARNING:. 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++`), `d`, `objc`, `objcpp`, `fortran`, `java`, `cs` (for `C#`) and -`vala`. In versions before `0.40.0` you must have at least one +`C++`), `d`, `objc`, `objcpp`, `fortran`, `java`, `cs` (for `C#`), +`vala` and `rust`. In versions before `0.40.0` you must have at least one language listed. The project name can be any string you want, it's not used for |