mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
19 lines
305 B
Bash
Executable File
19 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. DoBuildFiles/generic.properties
|
|
|
|
rm -rf meson
|
|
|
|
BUILDTYPE="$VARIANT"
|
|
COVERAGE=false
|
|
|
|
if [ "$VARIANT" = "coverage" ]; then
|
|
BUILDTYPE="debug"
|
|
COVERAGE=true
|
|
fi
|
|
|
|
[ -z "$VERBOSE" ] || set -x
|
|
|
|
exec meson setup --buildtype "$BUILDTYPE" "-Db_coverage=$COVERAGE" "${PWD}/meson" "$PROJECTDIR" "$@"
|
|
|