mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-20 18:42:23 +00:00
aedi: add zdbsp target
This commit is contained in:
parent
b0a3c2722e
commit
e0973611c5
2 changed files with 9 additions and 0 deletions
|
@ -32,6 +32,7 @@ def targets():
|
|||
RazeTarget(),
|
||||
AccTarget(),
|
||||
WadExtTarget(),
|
||||
ZdbspTarget(),
|
||||
PrBoomPlusTarget(),
|
||||
DsdaDoom(),
|
||||
ChocolateDoomTarget(),
|
||||
|
|
|
@ -182,6 +182,14 @@ class WadExtTarget(CMakeSingleExeMainTarget):
|
|||
state.checkout_git('https://github.com/ZDoom/wadext.git')
|
||||
|
||||
|
||||
class ZdbspTarget(CMakeSingleExeMainTarget):
|
||||
def __init__(self, name='zdbsp'):
|
||||
super().__init__(name)
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.checkout_git('https://github.com/ZDoom/zdbsp.git')
|
||||
|
||||
|
||||
class PrBoomPlusTarget(CMakeMainTarget):
|
||||
def __init__(self, name='prboom-plus'):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue