mirror of
https://github.com/mpv-player/mpv
synced 2025-02-15 03:27:35 +00:00
We don't have much test coverage, but even running the built binary doesn't harm to check with sanitizers.
18 lines
394 B
Bash
Executable File
18 lines
394 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
meson setup build \
|
|
-Db_sanitize=address,undefined \
|
|
-Dcdda=enabled \
|
|
-Ddvbin=enabled \
|
|
-Ddvdnav=enabled \
|
|
-Dlibarchive=enabled \
|
|
-Dlibmpv=true \
|
|
-Dmanpage-build=enabled \
|
|
-Dpipewire=enabled \
|
|
-Dshaderc=enabled \
|
|
-Dtests=true \
|
|
-Dvulkan=enabled
|
|
meson compile -C build
|
|
./build/mpv -v --no-config
|