aedi: add hands of necromancy target

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

View file

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

View file

@ -203,6 +203,14 @@ class RazeTarget(ZDoomVulkanBaseTarget):
state.checkout_git('https://github.com/ZDoom/Raze.git')
class HandsOfNecromancyTarget(ZDoomVulkanBaseTarget):
def __init__(self, name='handsofnecromancy'):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/HandsOfNecromancy/HandsOfNecromancy-Engine.git')
class AccTarget(CMakeSingleExeMainTarget):
def __init__(self, name='acc'):
super().__init__(name)