summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2023-03-04 09:30:32 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2023-03-04 09:30:32 +0100
commit005423327b6bac9ab89c808154e106e69b1da32d (patch)
tree65348d2c7fee50c5ae83e491e96dbf434882a081
parentd62d47ad8a65d24631d5243578cbb785fc4f5ef0 (diff)
downloadgnome-contacts-005423327b6bac9ab89c808154e106e69b1da32d.tar.gz
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
-rw-r--r--README.md9
1 files 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