mirror of
https://github.com/mpv-player/mpv.git
synced 2026-05-07 20:02:49 +00:00
2e1f89a0df
Upstream dropped libplacebo* so we're pretty much out of luck here. It's not worth it to bother building a subproject for just this one. *: https://github.com/msys2/MINGW-packages/commit/c3a79e8ae9a8e7f2215db210ba3f44d91d7e23b6
18 lines
432 B
Bash
Executable File
18 lines
432 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
. ./ci/build-common.sh
|
|
|
|
args=(
|
|
-D{cdda,d3d-hwaccel,d3d11,dvdnav,jpeg,lcms2,libarchive}=enabled
|
|
-D{libbluray,lua,shaderc,spirv-cross,uchardet,vapoursynth}=enabled
|
|
-D{egl-angle-lib,egl-angle-win32,pdf-build,rubberband,win32-smtc}=enabled
|
|
)
|
|
|
|
[[ "$SYS" == "clang64" ]] && args+=(
|
|
-Db_sanitize=address,undefined
|
|
)
|
|
|
|
meson setup build $common_args "${args[@]}"
|
|
meson compile -C build
|
|
./build/mpv.com -v --no-config
|