mirror of
https://github.com/mpv-player/mpv
synced 2025-01-23 08:03:19 +00:00
09bbca8770
Mostly. It is annoying if we want to add some flag/option to all the cis and then have to do it manually. Things easily get missed that way. Skipped powershell because of course I'm not going to deal with that.
18 lines
435 B
Bash
Executable File
18 lines
435 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
. ./ci/build-common.sh
|
|
|
|
# clone exactly the oldest libplacebo we want to support
|
|
rm -rf subprojects
|
|
mkdir -p subprojects
|
|
git clone https://code.videolan.org/videolan/libplacebo.git \
|
|
--recurse-submodules --shallow-submodules \
|
|
--depth=1 --branch v6.338 subprojects/libplacebo \
|
|
|
|
meson setup build $common_args \
|
|
-Dlibplacebo:vulkan=disabled \
|
|
-Dlua=enabled
|
|
meson compile -C build
|
|
./build/mpv -v --no-config
|