Class: coder.make.ToolchainInfo
Package: coder.make
Add postbuild tool to PostbuildTools
h.addPostbuildTool(bldtl_name)
h.addPostbuildTool(bldtl_name, bldtl_handle)
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.
Refer to the Example for coder.make.BuildTool
for
an example of how to create a BuildTool
object.
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)