From 96609da8d26fc05be8845c1edf05c8aa38af047d Mon Sep 17 00:00:00 2001 From: TheQwertiest Date: Mon, 15 Jun 2020 18:36:08 +0300 Subject: docs: replaced `ninja` with appropriate `meson` commands [skip ci] --- docs/markdown/IndepthTutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/markdown/IndepthTutorial.md') diff --git a/docs/markdown/IndepthTutorial.md b/docs/markdown/IndepthTutorial.md index dd93f826b..d2e26626f 100644 --- a/docs/markdown/IndepthTutorial.md +++ b/docs/markdown/IndepthTutorial.md @@ -79,12 +79,12 @@ With these four files we are done. To configure, build and run the test suite, w ```console $ meson builddir && cd builddir -$ ninja -$ ninja test +$ meson compile +$ meson test ``` To then install the project you only need one command. ```console -$ ninja install +$ meson install ``` -- cgit v1.2.3