From 005423327b6bac9ab89c808154e106e69b1da32d Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Sat, 4 Mar 2023 09:30:32 +0100 Subject: README: Update meson build instructions These days meson complains a bit if you `meson $BUILDDIR` instead of `meson setup $BUILDDIR`, so update our instructions. While we're at it, adjust them to use the meson-specific wrappers for building and installing, rather than using ninja directly --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 002f4b8..9b516ca 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,13 @@ sources, providing a centralized place for managing your contacts. ## Building -You can build and install Contacts using [Meson](http://mesonbuild.com/): +You can build, test and install Contacts using [Meson](http://mesonbuild.com/): ```sh -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 -- cgit v1.2.1