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(),
WadExtTarget(),
ZdbspTarget(),
ZDRayTarget(),
PrBoomPlusTarget(),
DsdaDoom(),
ChocolateDoomTarget(),

View file

@ -190,6 +190,14 @@ class ZdbspTarget(CMakeSingleExeMainTarget):
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):
def __init__(self, name='prboom-plus'):
super().__init__(name)