From 9cdac1342069325a60f07887bae9499cbf846123 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 7 Dec 2020 13:40:09 +0200 Subject: [PATCH] build script: add extra libraries for vorbis target --- build.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.py b/build.py index 9c35454a..3fa05df7 100755 --- a/build.py +++ b/build.py @@ -928,6 +928,11 @@ class SndFileTarget(CMakeStaticDependencyTarget): class VorbisTarget(ConfigureMakeStaticDependencyTarget): def __init__(self, name='vorbis'): super().__init__(name) + self.pkg_libs = { + 'vorbis': ('ogg',), + 'vorbisenc': ('vorbis', 'ogg'), + 'vorbisfile': ('vorbis', 'ogg'), + } def prepare_source(self, builder: 'Builder'): builder.download_source(