mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
build script: add extra libraries for vorbis target
This commit is contained in:
parent
2307816bd8
commit
9cdac13420
1 changed files with 5 additions and 0 deletions
5
build.py
5
build.py
|
@ -928,6 +928,11 @@ class SndFileTarget(CMakeStaticDependencyTarget):
|
||||||
class VorbisTarget(ConfigureMakeStaticDependencyTarget):
|
class VorbisTarget(ConfigureMakeStaticDependencyTarget):
|
||||||
def __init__(self, name='vorbis'):
|
def __init__(self, name='vorbis'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
self.pkg_libs = {
|
||||||
|
'vorbis': ('ogg',),
|
||||||
|
'vorbisenc': ('vorbis', 'ogg'),
|
||||||
|
'vorbisfile': ('vorbis', 'ogg'),
|
||||||
|
}
|
||||||
|
|
||||||
def prepare_source(self, builder: 'Builder'):
|
def prepare_source(self, builder: 'Builder'):
|
||||||
builder.download_source(
|
builder.download_source(
|
||||||
|
|
Loading…
Reference in a new issue