mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-16 16:41:42 +00:00
aedi: add modern lzdoom target
This commit is contained in:
parent
27c2d5d6e0
commit
c1db9a3a03
2 changed files with 9 additions and 0 deletions
|
@ -25,6 +25,7 @@ def targets():
|
|||
return (
|
||||
GZDoomTarget(),
|
||||
QZDoomTarget(),
|
||||
LZDoomTarget(),
|
||||
LZDoom3Target(),
|
||||
RazeTarget(),
|
||||
AccTarget(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue