mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
build script: remove zandronum target
git repository mirror wasn't updated for a while, official one needs mercurial it doesn't compile with fluidsynth 2.x fmodex doesn't support arm64
This commit is contained in:
parent
4cfb60042e
commit
de64e521db
1 changed files with 0 additions and 20 deletions
20
build.py
20
build.py
|
@ -432,25 +432,6 @@ class RazeTarget(ZDoomBaseTarget):
|
||||||
builder.checkout_git('https://github.com/coelckers/Raze.git')
|
builder.checkout_git('https://github.com/coelckers/Raze.git')
|
||||||
|
|
||||||
|
|
||||||
class ZandronumTarget(CMakeTarget):
|
|
||||||
def __init__(self, name='zandronum'):
|
|
||||||
super().__init__(name)
|
|
||||||
|
|
||||||
def prepare_source(self, builder: 'Builder'):
|
|
||||||
# TODO: use official Mercurial repository
|
|
||||||
builder.checkout_git('https://github.com/TorrSamaho/zandronum.git')
|
|
||||||
|
|
||||||
def initialize(self, builder: 'Builder'):
|
|
||||||
super().initialize(builder)
|
|
||||||
|
|
||||||
opts = self.options
|
|
||||||
opts['CMAKE_EXE_LINKER_FLAGS'] = '-framework AudioUnit -framework Carbon -framework IOKit'
|
|
||||||
# TODO: Linking to FluidSynth is disabled because Zandronum doesn't support FluidSynth 2.x
|
|
||||||
# opts['DYN_FLUIDSYNTH'] = 'NO'
|
|
||||||
opts['FMOD_INCLUDE_DIR'] = builder.include_path
|
|
||||||
opts['FMOD_LIBRARY'] = builder.lib_path + 'libfmodex.dylib'
|
|
||||||
|
|
||||||
|
|
||||||
class AccTarget(CMakeTarget):
|
class AccTarget(CMakeTarget):
|
||||||
def __init__(self, name='acc'):
|
def __init__(self, name='acc'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
@ -1360,7 +1341,6 @@ class Builder(object):
|
||||||
QZDoomTarget(),
|
QZDoomTarget(),
|
||||||
LZDoomTarget(),
|
LZDoomTarget(),
|
||||||
RazeTarget(),
|
RazeTarget(),
|
||||||
ZandronumTarget(),
|
|
||||||
AccTarget(),
|
AccTarget(),
|
||||||
PrBoomPlusTarget(),
|
PrBoomPlusTarget(),
|
||||||
ChocolateDoomTarget(),
|
ChocolateDoomTarget(),
|
||||||
|
|
Loading…
Reference in a new issue