mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: add zdray target
This commit is contained in:
parent
e0973611c5
commit
e05e59c2a9
2 changed files with 9 additions and 0 deletions
|
@ -33,6 +33,7 @@ def targets():
|
|||
AccTarget(),
|
||||
WadExtTarget(),
|
||||
ZdbspTarget(),
|
||||
ZDRayTarget(),
|
||||
PrBoomPlusTarget(),
|
||||
DsdaDoom(),
|
||||
ChocolateDoomTarget(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue