mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 10:26:00 +00:00
c7d8e155d2
It only ever had any real affect on windows so with the previous build change, enabling it cannot work.
19 lines
458 B
Bash
Executable File
19 lines
458 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
meson setup build \
|
|
--werror \
|
|
-Dc_args="-Wno-error=deprecated -Wno-error=deprecated-declarations" \
|
|
-Db_sanitize=address,undefined \
|
|
-Dcdda=enabled \
|
|
-Ddvbin=enabled \
|
|
-Ddvdnav=enabled \
|
|
-Dlibarchive=enabled \
|
|
-Dlibmpv=true \
|
|
-Dmanpage-build=enabled \
|
|
-Dpipewire=enabled \
|
|
-Dtests=true \
|
|
-Dvulkan=enabled
|
|
meson compile -C build
|
|
./build/mpv -v --no-config
|