Class: coder.make.ToolchainInfo
Package: coder.make
Add post-execute tool to PostbuildTools
h.addPostExecuteTool(name,bldtl_handle)
adds
a named build tool to h
.addPostExecuteTool(name
,bldtl_handle
)PostbuildTools
after the Execute
tool.
Refer to the coder.make.BuildTool Example for an example
of to create a BuildTool
.
To use addPostExecuteTool, enter the following commands:
h = coder.make.ToolchainInfo; bt = coder.make.BuildTool('toolname'); h.addPostExecuteTool('ExampleName',bt)
ans = ############################################## # Build Tool: toolname ############################################## Language : 'C' OptionsRegistry : {} InputFileExtensions : {} OutputFileExtensions : {} DerivedFileExtensions : {} SupportedOutputs : {'*'} CommandPattern : '|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<| |>OUTPUT<|' # --------- # Command # --------- # ------------ # Directives # ------------ (none) # ----------------- # File Extensions # ----------------- (none)