aedi: add zdray target

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

View file

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

View file

@ -190,6 +190,14 @@ class ZdbspTarget(CMakeSingleExeMainTarget):
state.checkout_git('https://github.com/ZDoom/zdbsp.git') state.checkout_git('https://github.com/ZDoom/zdbsp.git')
class ZDRayTarget(CMakeSingleExeMainTarget):
def __init__(self, name='zdray'):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/ZDoom/ZDRay.git')
class PrBoomPlusTarget(CMakeMainTarget): class PrBoomPlusTarget(CMakeMainTarget):
def __init__(self, name='prboom-plus'): def __init__(self, name='prboom-plus'):
super().__init__(name) super().__init__(name)