Main Content
addPostbuildTool
Class: coder.make.ToolchainInfo
Namespace: coder.make
Add postbuild tool to PostbuildTools
Syntax
h.addPostbuildTool(bldtl_name)
h.addPostbuildTool(bldtl_name, bldtl_handle)
Description
adds a h
.addPostbuildTool(bldtl_name
)BuildTool
object to PostbuildTools
.
adds a postbuild tool to h
.addPostbuildTool(bldtl_name
, bldtl_handle
)PostbuildTools
and assigns a
BuildTool
object to it.
Tips
Refer to the Examples for coder.make.BuildTool
for
an example of how to create a BuildTool
object.
Input Arguments
Examples
h = coder.make.ToolchainInfo; bt = coder.make.BuildTool('postbuildtoolname'); h.addPostbuildTool('examplename',bt)
ans = ############################################## # Build Tool: postbuildtoolname ############################################## 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