mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
aedi: add redemption target
This commit is contained in:
parent
180731f3a0
commit
65154736e5
2 changed files with 9 additions and 0 deletions
|
@ -31,6 +31,7 @@ def targets():
|
||||||
LZDoomTarget(),
|
LZDoomTarget(),
|
||||||
RazeTarget(),
|
RazeTarget(),
|
||||||
HandsOfNecromancyTarget(),
|
HandsOfNecromancyTarget(),
|
||||||
|
RedemptionTarget(),
|
||||||
AccTarget(),
|
AccTarget(),
|
||||||
WadExtTarget(),
|
WadExtTarget(),
|
||||||
ZdbspTarget(),
|
ZdbspTarget(),
|
||||||
|
|
|
@ -211,6 +211,14 @@ class HandsOfNecromancyTarget(ZDoomVulkanBaseTarget):
|
||||||
state.checkout_git('https://github.com/HandsOfNecromancy/HandsOfNecromancy-Engine.git')
|
state.checkout_git('https://github.com/HandsOfNecromancy/HandsOfNecromancy-Engine.git')
|
||||||
|
|
||||||
|
|
||||||
|
class RedemptionTarget(ZDoomVulkanBaseTarget):
|
||||||
|
def __init__(self, name='redemption'):
|
||||||
|
super().__init__(name)
|
||||||
|
|
||||||
|
def prepare_source(self, state: BuildState):
|
||||||
|
state.checkout_git('https://github.com/RedemptionEngine/redemption.git')
|
||||||
|
|
||||||
|
|
||||||
class AccTarget(CMakeSingleExeMainTarget):
|
class AccTarget(CMakeSingleExeMainTarget):
|
||||||
def __init__(self, name='acc'):
|
def __init__(self, name='acc'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
|
Loading…
Reference in a new issue