mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +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(),
|
||||
RazeTarget(),
|
||||
HandsOfNecromancyTarget(),
|
||||
RedemptionTarget(),
|
||||
AccTarget(),
|
||||
WadExtTarget(),
|
||||
ZdbspTarget(),
|
||||
|
|
|
@ -211,6 +211,14 @@ class HandsOfNecromancyTarget(ZDoomVulkanBaseTarget):
|
|||
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):
|
||||
def __init__(self, name='acc'):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue