aedi: add wadext target

This commit is contained in:
alexey.lysiuk 2021-08-08 13:09:38 +03:00
parent 15e9765a75
commit 0999c82b44
2 changed files with 10 additions and 0 deletions

View File

@ -30,6 +30,7 @@ def targets():
LZDoomTarget(),
RazeTarget(),
AccTarget(),
WadExtTarget(),
SladeTarget(),
PrBoomPlusTarget(),
DsdaDoom(),

View File

@ -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)