From eb5de71adc7d376036dbf5c526300e8d20d2794e Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Mon, 24 Jun 2024 13:37:01 -0700 Subject: [PATCH] justfile: accept extra options to just setup and pass them to meson This lets you get the default options and still be able to add more. Change-Id: Ife32c348b1498ff2ccdddf051a5bba520cfa36f0 --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index d63c54990..6a93fa63f 100644 --- a/justfile +++ b/justfile @@ -9,8 +9,8 @@ clean: rm -rf build # Prepare meson for building -setup: - meson setup build --prefix="$PWD/outputs/out" $mesonFlags +setup *OPTIONS: + meson setup build --prefix="$PWD/outputs/out" $mesonFlags {{ OPTIONS }} # Build lix build *OPTIONS: