aedi: add build prefix target

This commit is contained in:
alexey.lysiuk 2022-07-20 11:05:43 +03:00
parent 23e927ff73
commit 8256b95052
2 changed files with 6 additions and 0 deletions

View File

@ -118,6 +118,7 @@ def targets():
ZipTarget(),
# Special
BuildPrefix(),
CleanAllTarget(),
CleanDepsTarget(),
DownloadCMakeTarget(),

View File

@ -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)