zdoom-macos-deps/aedi/target/__init__.py

126 lines
3.2 KiB
Python
Raw Normal View History

#
# Helper module to build macOS version of various source ports
2022-01-11 09:43:29 +00:00
# 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 <http://www.gnu.org/licenses/>.
#
2021-05-01 08:54:52 +00:00
from .library_tier1 import *
from .library_tier2 import *
from .library_tier3 import *
from .main import *
from .special import *
2021-05-01 08:54:52 +00:00
from .tools import *
def targets():
return (
GZDoomTarget(),
QZDoomTarget(),
2021-02-01 08:44:38 +00:00
LZDoomTarget(),
RazeTarget(),
AccTarget(),
2021-08-08 10:09:38 +00:00
WadExtTarget(),
PrBoomPlusTarget(),
2021-03-10 08:41:10 +00:00
DsdaDoom(),
ChocolateDoomTarget(),
CrispyDoomTarget(),
RudeTarget(),
WoofTarget(),
DoomRetroTarget(),
Doom64EXTarget(),
DevilutionXTarget(),
EDuke32Target(),
NBloodTarget(),
QuakespasmTarget(),
YQuake2Target(),
2021-05-01 08:54:52 +00:00
# Libraries needed for GZDoom and Raze
Bzip2Target(),
FfiTarget(),
FlacTarget(),
FluidSynthTarget(),
GlibTarget(),
IconvTarget(),
InstPatchTarget(),
IntlTarget(),
JpegTurboTarget(),
MoltenVKTarget(),
Mpg123Target(),
OggTarget(),
OpenALTarget(),
OpusTarget(),
PcreTarget(),
2021-05-01 08:54:52 +00:00
SndFileTarget(),
VorbisTarget(),
VpxTarget(),
ZlibNgTarget(),
ZMusicTarget(),
# Libraries needed for other targets
2021-08-01 10:16:14 +00:00
BrotliTarget(),
2021-05-01 08:54:52 +00:00
DumbTarget(),
2021-06-05 08:57:04 +00:00
FmtTarget(),
2021-05-01 08:54:52 +00:00
FreeTypeTarget(),
2021-08-01 11:58:55 +00:00
HarfBuzzTarget(),
2021-06-23 07:12:23 +00:00
LuaTarget(),
2021-06-19 08:40:17 +00:00
LzmaTarget(),
2021-05-01 08:54:52 +00:00
MadTarget(),
MikmodTarget(),
ModPlugTarget(),
OpusFileTarget(),
PngTarget(),
PortMidiTarget(),
SamplerateTarget(),
Sdl2Target(),
Sdl2ImageTarget(),
Sdl2MixerTarget(),
Sdl2NetTarget(),
Sdl2TtfTarget(),
2021-06-23 07:15:58 +00:00
SfmlTarget(),
SodiumTarget(),
2021-06-19 10:09:14 +00:00
TiffTarget(),
2021-09-08 07:36:56 +00:00
VulkanHeadersTarget(),
2021-09-08 07:49:49 +00:00
VulkanLoaderTarget(),
WebpTarget(),
2021-09-03 08:32:52 +00:00
XmpTarget(),
2021-06-19 08:59:25 +00:00
ZstdTarget(),
2021-05-01 08:54:52 +00:00
2022-06-16 06:59:29 +00:00
# Obsolete libraries without binaries
2022-06-18 09:41:27 +00:00
ExpatTarget(),
2022-06-17 06:43:56 +00:00
FreeImageTarget(),
2022-06-17 06:47:00 +00:00
FtglTarget(),
2022-06-19 06:54:48 +00:00
GlewTarget(),
2022-06-16 06:59:29 +00:00
WxWidgetsTarget(),
2021-05-01 08:54:52 +00:00
# Tools
BuildCMakeTarget(),
2021-05-01 08:54:52 +00:00
GmakeTarget(),
MesonTarget(),
NasmTarget(),
NinjaTarget(),
2021-07-04 09:37:29 +00:00
P7ZipTarget(),
2021-09-24 08:11:23 +00:00
PbzxTarget(),
2021-05-01 08:54:52 +00:00
PkgConfigTarget(),
2021-07-04 09:40:45 +00:00
UnrarTarget(),
YasmTarget(),
2021-06-26 07:15:41 +00:00
ZipTarget(),
# Special
CleanAllTarget(),
CleanDepsTarget(),
DownloadCMakeTarget(),
TestDepsTarget(),
)