Merge "justfile: allow passing args to meson compile" into main

This commit is contained in:
Maximilian Bosch 2024-04-26 07:45:22 +00:00 committed by Gerrit Code Review
commit ce76d3eab2

View file

@ -6,13 +6,13 @@ clean:
setup:
meson setup build --prefix="$PWD/outputs/out"
build:
meson compile -C build
build *OPTIONS:
meson compile -C build {{ OPTIONS }}
compile:
just build
install:
install *OPTIONS: (build OPTIONS)
meson install -C build
test *OPTIONS: