summaryrefslogtreecommitdiffstats
path: root/scripts/mpv-build
blob: 75150039b46c66c9ed9abf17aa04cdf5e4b74018 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

cd mpv
if [ "$BUILDSYSTEM" = "meson" ]; then
    meson compile -C build "$@"
else
    python3 ./waf build "$@"
fi