mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-22 19:31:32 +00:00
build script: add woof target
This commit is contained in:
parent
0db9b43984
commit
2538ba0500
1 changed files with 10 additions and 0 deletions
10
build.py
10
build.py
|
@ -670,6 +670,15 @@ class RudeTarget(ChocolateDoomBaseTarget):
|
||||||
shutil.copy(builder.source_path + '/data/rude.wad', self.prefix)
|
shutil.copy(builder.source_path + '/data/rude.wad', self.prefix)
|
||||||
|
|
||||||
|
|
||||||
|
class WoofTarget(ChocolateDoomBaseTarget):
|
||||||
|
def __init__(self, name='woof'):
|
||||||
|
super().__init__(name)
|
||||||
|
self.outputs = ('Source/woof',)
|
||||||
|
|
||||||
|
def prepare_source(self, builder: 'Builder'):
|
||||||
|
builder.checkout_git('https://github.com/fabiangreffrath/woof.git')
|
||||||
|
|
||||||
|
|
||||||
class DoomRetroTarget(CMakeOutputTarget):
|
class DoomRetroTarget(CMakeOutputTarget):
|
||||||
def __init__(self, name='doomretro'):
|
def __init__(self, name='doomretro'):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
|
@ -2090,6 +2099,7 @@ class Builder(object):
|
||||||
ChocolateDoomTarget(),
|
ChocolateDoomTarget(),
|
||||||
CrispyDoomTarget(),
|
CrispyDoomTarget(),
|
||||||
RudeTarget(),
|
RudeTarget(),
|
||||||
|
WoofTarget(),
|
||||||
DoomRetroTarget(),
|
DoomRetroTarget(),
|
||||||
Doom64EXTarget(),
|
Doom64EXTarget(),
|
||||||
DevilutionXTarget(),
|
DevilutionXTarget(),
|
||||||
|
|
Loading…
Reference in a new issue