diff options
author | Maximilian Bosch <maximilian@mbosch.me> | 2024-04-26 07:45:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix> | 2024-04-26 07:45:22 +0000 |
commit | ce76d3eab2b8e41050aef06b3ece055e8c18ffc6 (patch) | |
tree | 42d05383f4bf9e2e3871398c23e5536eee79b312 /justfile | |
parent | 5420b3afd6c328faf1508dce03bbe8e58da8af2b (diff) | |
parent | ecad3632cca60e28caa99af321bef4d84810f958 (diff) |
Merge "justfile: allow passing args to `meson compile`" into main
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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: |