mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. DoBuildFiles/generic.properties
|
||
|
|
||
|
set -- "$@" -C "${PWD}/meson"
|
||
|
{ [ -z "$BUILDVERBOSE" ] && [ -z "$TESTVERBOSE" ]; } || set -- -v "$@"
|
||
|
[ -z "$VERBOSE" ] || set -x
|
||
|
|
||
|
exec ninja -j"$NPROC" "$@"
|
||
|
|