mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 13:21:05 +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(),
|
QZDoomTarget(),
|
||||||
LZDoomTarget(),
|
LZDoomTarget(),
|
||||||
RazeTarget(),
|
RazeTarget(),
|
||||||
|
HandsOfNecromancyTarget(),
|
||||||
AccTarget(),
|
AccTarget(),
|
||||||
WadExtTarget(),
|
WadExtTarget(),
|
||||||
ZdbspTarget(),
|
ZdbspTarget(),
|
||||||
|
|
|
@ -203,6 +203,14 @@ class RazeTarget(ZDoomVulkanBaseTarget):
|
||||||
state.checkout_git('https://github.com/ZDoom/Raze.git')
|
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):
|
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