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:
parent
d86009bd76
commit
eb5de71adc
1 changed files with 2 additions and 2 deletions
4
justfile
4
justfile
|
@ -9,8 +9,8 @@ clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
|
||||||
# Prepare meson for building
|
# Prepare meson for building
|
||||||
setup:
|
setup *OPTIONS:
|
||||||
meson setup build --prefix="$PWD/outputs/out" $mesonFlags
|
meson setup build --prefix="$PWD/outputs/out" $mesonFlags {{ OPTIONS }}
|
||||||
|
|
||||||
# Build lix
|
# Build lix
|
||||||
build *OPTIONS:
|
build *OPTIONS:
|
||||||
|
|
Loading…
Reference in a new issue