mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +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'):
|
||||
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 = (
|
||||
'bz2',
|
||||
'freetype',
|
||||
'mikmod',
|
||||
'modplug',
|
||||
'opusfile',
|
||||
'png',
|
||||
'vorbisfile',
|
||||
'z',
|
||||
)
|
||||
|
||||
for lib in extra_libs:
|
||||
|
|
Loading…
Reference in a new issue