From 1b6ac89c0af59e39b65e24e4f1d6c7cf122f2645 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Sun, 9 Jul 2023 20:23:02 +0200 Subject: [PATCH] README: replace ninja with meson commands Meson provides wrappers for the ninja build commands, so let's make use of those. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ca39d6e..8d4a1bb 100644 --- a/README.md +++ b/README.md @@ -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