From de64e521db5947cd1597104afd68df3e9b02b2b4 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 13 Dec 2020 12:40:45 +0200 Subject: [PATCH] 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 --- build.py | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/build.py b/build.py index e410cdc9..78df30f8 100755 --- a/build.py +++ b/build.py @@ -432,25 +432,6 @@ class RazeTarget(ZDoomBaseTarget): 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): def __init__(self, name='acc'): super().__init__(name) @@ -1360,7 +1341,6 @@ class Builder(object): QZDoomTarget(), LZDoomTarget(), RazeTarget(), - ZandronumTarget(), AccTarget(), PrBoomPlusTarget(), ChocolateDoomTarget(),