mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 23:02:37 +00:00
f2cce5f38f
Remove waf entirely in favor of meson as the only supported build system. Waf was officially deprecated in 0.36.0, and has not been preferred over meson since 0.35.0.
17 lines
359 B
Bash
Executable File
17 lines
359 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
meson setup build \
|
|
-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
|