mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
aedi: add hands of necromancy target
This commit is contained in:
parent
c4a9862414
commit
180731f3a0
2 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,7 @@ def targets():
|
|||
QZDoomTarget(),
|
||||
LZDoomTarget(),
|
||||
RazeTarget(),
|
||||
HandsOfNecromancyTarget(),
|
||||
AccTarget(),
|
||||
WadExtTarget(),
|
||||
ZdbspTarget(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue