docs: Reword ninja invocation note to clarify build directory

Minor rewording to clarify purpose of the -C flag in the ninja
invocation, whilst retaining previous meaning.

Signed-off-by: Tim Small <tim@seoss.co.uk>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Tim Small 2023-07-13 12:00:04 +01:00 committed by Michal Privoznik
parent ef7228f5ca
commit 36b247b908

View File

@ -116,14 +116,16 @@ checked in the top level ``meson.build`` file in the ``meson_version`` field.
Compiling the sources Compiling the sources
--------------------- ---------------------
To build the configured project run (note that ``-C build`` is a path to the Compilation can be carried out by ``ninja``:
build directory):
:: ::
$ ninja -C build $ ninja -C build
The ``build`` directory now contains the built binaries. "``build``" is the path to a directory which must match a path previously given
to ``meson setup``.
Binaries and other resulting files can be found within the build directory.
Additionally you can also run the test suite: Additionally you can also run the test suite: