mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
aedi: add wadext target
This commit is contained in:
parent
15e9765a75
commit
0999c82b44
2 changed files with 10 additions and 0 deletions
|
@ -30,6 +30,7 @@ def targets():
|
||||||
LZDoomTarget(),
|
LZDoomTarget(),
|
||||||
RazeTarget(),
|
RazeTarget(),
|
||||||
AccTarget(),
|
AccTarget(),
|
||||||
|
WadExtTarget(),
|
||||||
SladeTarget(),
|
SladeTarget(),
|
||||||
PrBoomPlusTarget(),
|
PrBoomPlusTarget(),
|
||||||
DsdaDoom(),
|
DsdaDoom(),
|
||||||
|
|
|
@ -165,6 +165,15 @@ class AccTarget(CMakeMainTarget):
|
||||||
state.checkout_git('https://github.com/rheit/acc.git')
|
state.checkout_git('https://github.com/rheit/acc.git')
|
||||||
|
|
||||||
|
|
||||||
|
class WadExtTarget(CMakeMainTarget):
|
||||||
|
def __init__(self, name='wadext'):
|
||||||
|
super().__init__(name)
|
||||||
|
self.outputs = (name,)
|
||||||
|
|
||||||
|
def prepare_source(self, state: BuildState):
|
||||||
|
state.checkout_git('https://github.com/coelckers/wadext.git')
|
||||||
|
|
||||||
|
|
||||||
class SladeTarget(CMakeMainTarget):
|
class SladeTarget(CMakeMainTarget):
|
||||||
def __init__(self, name='slade'):
|
def __init__(self, name='slade'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
|
Loading…
Reference in a new issue