mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-21 02:51:43 +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)
|
||||
|
||||
|
||||
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):
|
||||
def __init__(self, name='doomretro'):
|
||||
super().__init__(name)
|
||||
|
@ -2090,6 +2099,7 @@ class Builder(object):
|
|||
ChocolateDoomTarget(),
|
||||
CrispyDoomTarget(),
|
||||
RudeTarget(),
|
||||
WoofTarget(),
|
||||
DoomRetroTarget(),
|
||||
Doom64EXTarget(),
|
||||
DevilutionXTarget(),
|
||||
|
|
Loading…
Reference in a new issue