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
This commit is contained in:
Jade Lovelace 2024-06-24 13:37:01 -07:00
parent d86009bd76
commit eb5de71adc

View file

@ -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: