Main Content
addPostExecuteTool
Class: coder.make.ToolchainInfo
Namespace: coder.make
Add post-execute tool to PostbuildTools
Syntax
h.addPostExecuteTool(name,bldtl_handle)
Description
adds a named build tool to h
.addPostExecuteTool(name
,bldtl_handle
)PostbuildTools
after the Execute
tool.
Input Arguments
Examples
Refer to the coder.make.BuildTool Examples 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)
Version History
Introduced in R2013a