mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-28 22:52:17 +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(),
|
AccTarget(),
|
||||||
WadExtTarget(),
|
WadExtTarget(),
|
||||||
ZdbspTarget(),
|
ZdbspTarget(),
|
||||||
|
ZDRayTarget(),
|
||||||
PrBoomPlusTarget(),
|
PrBoomPlusTarget(),
|
||||||
DsdaDoom(),
|
DsdaDoom(),
|
||||||
ChocolateDoomTarget(),
|
ChocolateDoomTarget(),
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue