# # Helper module to build macOS version of various source ports # Copyright (C) 2020-2022 Alexey Lysiuk # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # from .library_tier1 import * from .library_tier2 import * from .library_tier3 import * from .main import * from .special import * from .tools import * def targets(): return ( GZDoomTarget(), QZDoomTarget(), LZDoomTarget(), RazeTarget(), AccTarget(), WadExtTarget(), PrBoomPlusTarget(), DsdaDoom(), ChocolateDoomTarget(), CrispyDoomTarget(), RudeTarget(), WoofTarget(), DoomRetroTarget(), Doom64EXTarget(), DevilutionXTarget(), EDuke32Target(), NBloodTarget(), QuakespasmTarget(), YQuake2Target(), # Libraries needed for GZDoom and Raze Bzip2Target(), FfiTarget(), FlacTarget(), FluidSynthTarget(), GlibTarget(), IconvTarget(), InstPatchTarget(), IntlTarget(), JpegTurboTarget(), MoltenVKTarget(), Mpg123Target(), OggTarget(), OpenALTarget(), OpusTarget(), PcreTarget(), SndFileTarget(), VorbisTarget(), VpxTarget(), ZlibNgTarget(), ZMusicTarget(), # Libraries needed for other targets DumbTarget(), FmtTarget(), LzmaTarget(), MadTarget(), MikmodTarget(), ModPlugTarget(), OpusFileTarget(), PngTarget(), PortMidiTarget(), SamplerateTarget(), Sdl2Target(), Sdl2ImageTarget(), Sdl2MixerTarget(), Sdl2NetTarget(), SodiumTarget(), VulkanHeadersTarget(), VulkanLoaderTarget(), WebpTarget(), XmpTarget(), ZstdTarget(), # Obsolete libraries without binaries BrotliTarget(), ExpatTarget(), FreeImageTarget(), FreeTypeTarget(), FtglTarget(), GlewTarget(), HarfBuzzTarget(), LuaTarget(), Sdl2TtfTarget(), SfmlTarget(), TiffTarget(), WxWidgetsTarget(), # Tools BuildCMakeTarget(), GmakeTarget(), MesonTarget(), NasmTarget(), NinjaTarget(), P7ZipTarget(), PbzxTarget(), PkgConfigTarget(), UnrarTarget(), YasmTarget(), ZipTarget(), # Special CleanAllTarget(), CleanDepsTarget(), DownloadCMakeTarget(), TestDepsTarget(), )