Browse Source

docs: Use meson setup explicitly

Avoids a warning when running the command
merge-requests/1327/merge
Kévin Commaille 3 years ago
parent
commit
5f3857e87b
No known key found for this signature in database
GPG Key ID: 29A48C1F03620416
  1. 4
      CONTRIBUTING.md

4
CONTRIBUTING.md

@ -82,7 +82,7 @@ After that, move into the directory where you cloned Fractal and setup the proje
fenv gen build-aux/org.gnome.Fractal.Hack.json
# Initialize the build system
fenv exec -- meson --prefix=/app _build
fenv exec -- meson setup --prefix=/app _build
```
Finally, build and run the application:
@ -133,7 +133,7 @@ If you decide to ignore our recommendation and build on your host system, outsid
will need Meson and Ninja.
```sh
meson . _build --prefix=/usr/local
meson setup --prefix=/usr/local _build
ninja -C _build
sudo ninja -C _build install
```

Loading…
Cancel
Save