mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: add devilutionx hellfire target
This commit is contained in:
parent
330de9c2d4
commit
a69bdbe929
2 changed files with 7 additions and 0 deletions
|
@ -36,6 +36,7 @@ def targets():
|
|||
DoomRetroTarget(),
|
||||
Doom64EXTarget(),
|
||||
DevilutionXTarget(),
|
||||
DevilutionXHellfireTarget(),
|
||||
EDuke32Target(),
|
||||
NBloodTarget(),
|
||||
QuakespasmTarget(),
|
||||
|
|
|
@ -271,6 +271,12 @@ class DevilutionXTarget(CMakeMainTarget):
|
|||
super().configure(state)
|
||||
|
||||
|
||||
class DevilutionXHellfireTarget(DevilutionXTarget):
|
||||
def __init__(self, name='devilutionx-hellfire'):
|
||||
super().__init__(name)
|
||||
self.options['HELLFIRE'] = 'ON'
|
||||
|
||||
|
||||
class EDuke32Target(MakeMainTarget):
|
||||
def __init__(self, name='eduke32'):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue