aedi: add zdbsp target

This commit is contained in:
alexey.lysiuk 2022-07-26 10:19:54 +03:00
parent b0a3c2722e
commit e0973611c5
2 changed files with 9 additions and 0 deletions

View file

@ -32,6 +32,7 @@ def targets():
RazeTarget(),
AccTarget(),
WadExtTarget(),
ZdbspTarget(),
PrBoomPlusTarget(),
DsdaDoom(),
ChocolateDoomTarget(),

View file

@ -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)