aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/howtox.md
diff options
context:
space:
mode:
authorTheQwertiest <qwertiest@mail.ru>2020-06-30 18:32:27 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2020-06-30 23:52:31 +0300
commit83a973ca04cf53dd98ff487b4273155b82cf554a (patch)
treeb060a4df04b2a3868c1df22db4daa62fc03aa6c3 /docs/markdown/howtox.md
parent9e0db0a05ed146b48dc56cc95a6a85b99f93fc8a (diff)
downloadmeson-83a973ca04cf53dd98ff487b4273155b82cf554a.zip
meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.gz
meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.bz2
Replaced `ninja` with `meson` [skip ci]
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r--docs/markdown/howtox.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md
index 5f9d136..c89f883 100644
--- a/docs/markdown/howtox.md
+++ b/docs/markdown/howtox.md
@@ -150,7 +150,7 @@ Then issue the following commands.
```console
$ meson compile
$ meson test
-$ ninja coverage-html (or coverage-xml)
+$ meson compile coverage-html (or coverage-xml)
```
The coverage report can be found in the meson-logs subdirectory.
@@ -190,14 +190,14 @@ test failures.
Install scan-build and configure your project. Then do this:
```console
-$ ninja scan-build
+$ meson compile scan-build
```
You can use the `SCANBUILD` environment variable to choose the
scan-build executable.
```console
-$ SCANBUILD=<your exe> ninja scan-build
+$ SCANBUILD=<your exe> meson compile scan-build
```