Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: Use meson subcommands instead of ninja command #17

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
DESTDIR: out
run: |
meson setup builddir --prefix=/usr -Ddemo=true
ninja -C builddir
ninja -C builddir install
meson compile -C builddir
meson install -C builddir
lint:

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,23 +88,23 @@ You'll need the following dependencies:
* meson (>= 0.56.0)
* valac

Run `meson setup` to configure the build environment and run `ninja` to build
Run `meson setup` to configure the build environment and run `meson compile` to build:

```bash
meson setup builddir --prefix=/usr
ninja -C builddir
meson compile -C builddir
```

To install, use `ninja install`
To install, use `meson install`:

```bash
ninja install -C builddir
meson install -C builddir
```

You can optionally build and run a demo app:

```bash
meson configure builddir -Ddemo=true
ninja -C builddir
meson compile -C builddir
./builddir/examples/example
```