From cf11f4129258e3999ae29563d30ed5d19e44bb39 Mon Sep 17 00:00:00 2001 From: mdrokz <33598169+mdrokz@users.noreply.github.com> Date: Thu, 30 Dec 2021 17:09:39 +0530 Subject: [PATCH] add libwebp support --- scripts/parse-arguments.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/parse-arguments.sh b/scripts/parse-arguments.sh index eb9fd3a..3aeeacb 100755 --- a/scripts/parse-arguments.sh +++ b/scripts/parse-arguments.sh @@ -22,6 +22,7 @@ SUPPORTED_LIBRARIES_FREE=( "libtwolame" "libspeex" "libvpx" + "libwebp" "libfreetype" "libfribidi" ) @@ -85,6 +86,9 @@ for argument in "$@"; do --enable-libopus | -opus) EXTERNAL_LIBRARIES+=("libopus") ;; + --enable-webp | -webp) + EXTERNAL_LIBRARIES+=("libwep") + ;; --enable-libwavpack | -wavpack) EXTERNAL_LIBRARIES+=("libwavpack") ;;