mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
aedi: add build prefix target
This commit is contained in:
parent
23e927ff73
commit
8256b95052
2 changed files with 6 additions and 0 deletions
|
@ -118,6 +118,7 @@ def targets():
|
|||
ZipTarget(),
|
||||
|
||||
# Special
|
||||
BuildPrefix(),
|
||||
CleanAllTarget(),
|
||||
CleanDepsTarget(),
|
||||
DownloadCMakeTarget(),
|
||||
|
|
|
@ -24,6 +24,11 @@ from ..state import BuildState
|
|||
from .base import BuildTarget, Target
|
||||
|
||||
|
||||
class BuildPrefix(Target):
|
||||
def __init__(self, name='build-prefix'):
|
||||
super().__init__(name)
|
||||
|
||||
|
||||
class CleanTarget(Target):
|
||||
def __init__(self, name=None):
|
||||
super().__init__(name)
|
||||
|
|
Loading…
Reference in a new issue