mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
build script: add acc target
This commit is contained in:
parent
612fe41157
commit
f11de9c041
1 changed files with 11 additions and 0 deletions
11
build.py
11
build.py
|
@ -39,6 +39,9 @@ class Target:
|
|||
self.cmake_options = {}
|
||||
self.post_build = None
|
||||
|
||||
def configure(self, builder: 'Builder'):
|
||||
pass
|
||||
|
||||
def _assign_common_linker_flags(self, builder: 'Builder'):
|
||||
extra_libs = (
|
||||
'mpg123',
|
||||
|
@ -157,6 +160,13 @@ class ZandronumTarget(Target):
|
|||
opts['FMOD_LIBRARY'] = builder.lib_path + 'libfmodex.dylib'
|
||||
|
||||
|
||||
class AccTarget(Target):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.name = 'acc'
|
||||
self.url = 'https://github.com/rheit/acc.git'
|
||||
|
||||
|
||||
class PrBoomPlusTarget(Target):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
@ -471,6 +481,7 @@ class Builder(object):
|
|||
LZDoomTarget(),
|
||||
RazeTarget(),
|
||||
ZandronumTarget(),
|
||||
AccTarget(),
|
||||
PrBoomPlusTarget(),
|
||||
ChocolateDoomTarget(),
|
||||
CrispyDoomTarget(),
|
||||
|
|
Loading…
Reference in a new issue