mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
aedi: add descriptions to target class methods
This commit is contained in:
parent
24a2c520bd
commit
7fc549f24d
1 changed files with 9 additions and 0 deletions
|
@ -46,21 +46,30 @@ class Target:
|
||||||
self.unsupported_architectures = ()
|
self.unsupported_architectures = ()
|
||||||
|
|
||||||
def prepare_source(self, state: BuildState):
|
def prepare_source(self, state: BuildState):
|
||||||
|
""" Called when target is selected by name """
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def initialize(self, state: BuildState):
|
def initialize(self, state: BuildState):
|
||||||
|
""" Called on all targets except the selected one before prefix directory creation """
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def detect(self, state: BuildState) -> bool:
|
def detect(self, state: BuildState) -> bool:
|
||||||
|
"""
|
||||||
|
Called when target is selected by source code directory
|
||||||
|
Called on all targets until match is found
|
||||||
|
"""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def configure(self, state: BuildState):
|
def configure(self, state: BuildState):
|
||||||
|
""" Called before selected target is about to build """
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def build(self, state: BuildState):
|
def build(self, state: BuildState):
|
||||||
|
""" Does actual build """
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def post_build(self, state: BuildState):
|
def post_build(self, state: BuildState):
|
||||||
|
""" Called after selected target is built """
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue