mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 20:11:51 +00:00
build script: use own zlib and bz2 libraries for devilutionx
This commit is contained in:
parent
a41e67ada3
commit
c81f11dd16
1 changed files with 3 additions and 1 deletions
4
build.py
4
build.py
|
@ -233,15 +233,17 @@ class DevilutionXTarget(Target):
|
||||||
def configure(self, builder: 'Builder'):
|
def configure(self, builder: 'Builder'):
|
||||||
self._assign_common_linker_flags(builder)
|
self._assign_common_linker_flags(builder)
|
||||||
|
|
||||||
extra_linker_args = ' -lbz2 -lz -framework Cocoa -framework ForceFeedback -framework IOKit'
|
extra_linker_args = ' -framework Cocoa -framework ForceFeedback -framework IOKit'
|
||||||
|
|
||||||
extra_libs = (
|
extra_libs = (
|
||||||
|
'bz2',
|
||||||
'freetype',
|
'freetype',
|
||||||
'mikmod',
|
'mikmod',
|
||||||
'modplug',
|
'modplug',
|
||||||
'opusfile',
|
'opusfile',
|
||||||
'png',
|
'png',
|
||||||
'vorbisfile',
|
'vorbisfile',
|
||||||
|
'z',
|
||||||
)
|
)
|
||||||
|
|
||||||
for lib in extra_libs:
|
for lib in extra_libs:
|
||||||
|
|
Loading…
Reference in a new issue