aedi: add modern lzdoom target

This commit is contained in:
alexey.lysiuk 2021-02-01 10:44:38 +02:00
parent 27c2d5d6e0
commit c1db9a3a03
2 changed files with 9 additions and 0 deletions

View file

@ -25,6 +25,7 @@ def targets():
return (
GZDoomTarget(),
QZDoomTarget(),
LZDoomTarget(),
LZDoom3Target(),
RazeTarget(),
AccTarget(),

View file

@ -119,6 +119,14 @@ class QZDoomTarget(GZDoomTarget):
state.checkout_git('https://github.com/madame-rachelle/qzdoom.git')
class LZDoomTarget(GZDoomTarget):
def __init__(self, name='lzdoom'):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/drfrag666/gzdoom.git')
class LZDoom3Target(ZDoomBaseTarget):
def __init__(self, name='lzdoom3'):
super().__init__(name)