mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
build script: add rude target
This commit is contained in:
parent
6d2514992f
commit
0d1217970a
1 changed files with 14 additions and 0 deletions
14
build.py
14
build.py
|
@ -657,6 +657,19 @@ class CrispyDoomTarget(ChocolateDoomBaseTarget):
|
|||
builder.checkout_git('https://github.com/fabiangreffrath/crispy-doom.git')
|
||||
|
||||
|
||||
class RudeTarget(ChocolateDoomBaseTarget):
|
||||
def __init__(self, name='rude'):
|
||||
super().__init__(name)
|
||||
self._fill_outputs('rude')
|
||||
|
||||
def prepare_source(self, builder: 'Builder'):
|
||||
builder.checkout_git('https://github.com/drfrag666/RUDE.git')
|
||||
|
||||
def post_build(self, builder: 'Builder'):
|
||||
super().post_build(builder)
|
||||
shutil.copy(builder.source_path + '/data/rude.wad', self.prefix)
|
||||
|
||||
|
||||
class DoomRetroTarget(CMakeOutputTarget):
|
||||
def __init__(self, name='doomretro'):
|
||||
super().__init__(name)
|
||||
|
@ -2075,6 +2088,7 @@ class Builder(object):
|
|||
PrBoomPlusTarget(),
|
||||
ChocolateDoomTarget(),
|
||||
CrispyDoomTarget(),
|
||||
RudeTarget(),
|
||||
DoomRetroTarget(),
|
||||
Doom64EXTarget(),
|
||||
DevilutionXTarget(),
|
||||
|
|
Loading…
Reference in a new issue