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:
alexey.lysiuk 2020-12-13 12:40:45 +02:00
parent 4cfb60042e
commit de64e521db

View file

@ -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(),