mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 16:33:02 +00:00
919b7a55cd
This option no longer exists, as zsh completion is installed unconditionally now.
15 lines
308 B
Bash
Executable File
15 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
python3 ./waf configure \
|
|
--enable-cdda \
|
|
--enable-dvbin \
|
|
--enable-dvdnav \
|
|
--enable-libarchive \
|
|
--enable-libmpv-shared \
|
|
--enable-libsmbclient \
|
|
--enable-manpage-build \
|
|
--enable-shaderc \
|
|
--enable-vulkan
|
|
python3 ./waf build --verbose
|