mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +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(),
|
||||
RazeTarget(),
|
||||
AccTarget(),
|
||||
WadExtTarget(),
|
||||
SladeTarget(),
|
||||
PrBoomPlusTarget(),
|
||||
DsdaDoom(),
|
||||
|
|
|
@ -165,6 +165,15 @@ class AccTarget(CMakeMainTarget):
|
|||
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):
|
||||
def __init__(self, name='slade'):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue