mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-24 21:01:59 +00:00
aedi: add disdain target
[skip build]
This commit is contained in:
parent
2ad5da472e
commit
28ff37f52a
2 changed files with 9 additions and 0 deletions
|
@ -32,6 +32,7 @@ def targets():
|
||||||
RazeTarget(),
|
RazeTarget(),
|
||||||
HandsOfNecromancyTarget(),
|
HandsOfNecromancyTarget(),
|
||||||
RedemptionTarget(),
|
RedemptionTarget(),
|
||||||
|
DisdainTarget(),
|
||||||
AccTarget(),
|
AccTarget(),
|
||||||
WadExtTarget(),
|
WadExtTarget(),
|
||||||
ZdbspTarget(),
|
ZdbspTarget(),
|
||||||
|
|
|
@ -219,6 +219,14 @@ class RedemptionTarget(ZDoomVulkanBaseTarget):
|
||||||
state.checkout_git('https://github.com/RedemptionEngine/redemption.git')
|
state.checkout_git('https://github.com/RedemptionEngine/redemption.git')
|
||||||
|
|
||||||
|
|
||||||
|
class DisdainTarget(ZDoomVulkanBaseTarget):
|
||||||
|
def __init__(self, name='disdain'):
|
||||||
|
super().__init__(name)
|
||||||
|
|
||||||
|
def prepare_source(self, state: BuildState):
|
||||||
|
state.checkout_git('https://github.com/MischiefDonut/disdain-src.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