mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
aedi: keep only one lzdoom target, 3.x
This commit is contained in:
parent
25310c6080
commit
0d04ae835f
2 changed files with 2 additions and 14 deletions
|
@ -28,7 +28,6 @@ def targets():
|
|||
GZDoomTarget(),
|
||||
QZDoomTarget(),
|
||||
LZDoomTarget(),
|
||||
LZDoom3Target(),
|
||||
RazeTarget(),
|
||||
AccTarget(),
|
||||
SladeTarget(),
|
||||
|
|
|
@ -125,20 +125,9 @@ class QZDoomTarget(ZDoomVulkanBaseTarget):
|
|||
state.checkout_git('https://github.com/madame-rachelle/qzdoom.git')
|
||||
|
||||
|
||||
class LZDoomTarget(ZDoomVulkanBaseTarget):
|
||||
class LZDoomTarget(ZDoomBaseTarget):
|
||||
def __init__(self, name='lzdoom'):
|
||||
super().__init__(name)
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
state.checkout_git('https://github.com/drfrag666/gzdoom.git')
|
||||
|
||||
def detect(self, state: BuildState) -> bool:
|
||||
return super().detect(state) and not state.has_source_file('libraries/zmusic')
|
||||
|
||||
|
||||
class LZDoom3Target(ZDoomBaseTarget):
|
||||
def __init__(self, name='lzdoom3'):
|
||||
super().__init__(name)
|
||||
self.unsupported_architectures = ('arm64',)
|
||||
|
||||
opts = self.options
|
||||
|
@ -150,7 +139,7 @@ class LZDoom3Target(ZDoomBaseTarget):
|
|||
state.checkout_git('https://github.com/drfrag666/gzdoom.git', branch='g3.3mgw')
|
||||
|
||||
def detect(self, state: BuildState) -> bool:
|
||||
return state.has_source_file('ico_lzdoom.png') and state.has_source_file('libraries/zmusic')
|
||||
return state.has_source_file('ico_lzdoom.png')
|
||||
|
||||
|
||||
class RazeTarget(ZDoomVulkanBaseTarget):
|
||||
|
|
Loading…
Reference in a new issue