README: replace ninja with meson commands

Meson provides wrappers for the ninja build commands, so let's make use
of those.
This commit is contained in:
Niels De Graef 2023-07-09 20:23:02 +02:00
parent da60df0e77
commit 1b6ac89c0a

View File

@ -17,12 +17,13 @@ You can find the nightly documentation at https://gnome.pages.gitlab.gnome.org/l
Building
--------
To build and install libsecret, you can use the following commands:
To build, test and install libsecret, you can use the following commands:
```
$ meson _build
$ ninja -C _build
$ ninja -C _build install
$ meson setup _build
$ meson compile -C _build
$ meson test -C _build
$ meson install -C _build
```
Contributing