aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2024-04-26 07:45:22 +0000
committerGerrit Code Review <gerrit@lix>2024-04-26 07:45:22 +0000
commitce76d3eab2b8e41050aef06b3ece055e8c18ffc6 (patch)
tree42d05383f4bf9e2e3871398c23e5536eee79b312 /justfile
parent5420b3afd6c328faf1508dce03bbe8e58da8af2b (diff)
parentecad3632cca60e28caa99af321bef4d84810f958 (diff)
Merge "justfile: allow passing args to `meson compile`" into main
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/justfile b/justfile
index 8c81867f0..215650b77 100644
--- a/justfile
+++ b/justfile
@@ -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: