aedi: add redemption target

This commit is contained in:
alexey.lysiuk 2022-09-03 10:15:44 +03:00
parent 180731f3a0
commit 65154736e5
2 changed files with 9 additions and 0 deletions

View file

@ -31,6 +31,7 @@ def targets():
LZDoomTarget(),
RazeTarget(),
HandsOfNecromancyTarget(),
RedemptionTarget(),
AccTarget(),
WadExtTarget(),
ZdbspTarget(),

View file

@ -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)