mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +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 = ()
|
||||
|
||||
def prepare_source(self, state: BuildState):
|
||||
""" Called when target is selected by name """
|
||||
pass
|
||||
|
||||
def initialize(self, state: BuildState):
|
||||
""" Called on all targets except the selected one before prefix directory creation """
|
||||
pass
|
||||
|
||||
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
|
||||
|
||||
def configure(self, state: BuildState):
|
||||
""" Called before selected target is about to build """
|
||||
pass
|
||||
|
||||
def build(self, state: BuildState):
|
||||
""" Does actual build """
|
||||
pass
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
""" Called after selected target is built """
|
||||
pass
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue