Class: coder.make.ToolchainInfo
Package: coder.make
Add BuildTool
object to BuildTools
tool = h.addBuildTool(bldtl_name)
tool = h.addBuildTool(bldtl_name, bldtl_handle)
creates and adds a named tool
= h
.addBuildTool(bldtl_name
)BuildTool
object
to coder.make.ToolchainInfo.BuildTools
.
adds an existing tool
= h
.addBuildTool(bldtl_name
, bldtl_handle
)BuildTool
object to
coder.make.ToolchainInfo.BuildTools
. The
bldtl_name
argument overrides the Name
property of the existing BuildTool
object.
Refer to the Example for coder.make.BuildTool
for
an example of how to create a BuildTool
object.
Refer to the coder.make.BuildTool Example for a complete
example of how to create a addBuildTool
.
h.addBuildTool('ExampleBuildTool')
ans = ############################################## # Build Tool: Build Tool ############################################## Language : 'C' OptionsRegistry : {} InputFileExtensions : {} OutputFileExtensions : {} DerivedFileExtensions : {} SupportedOutputs : {'*'} CommandPattern : '|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<| |>OUTPUT<|' # --------- # Command # --------- # ------------ # Directives # ------------ (none) # ----------------- # File Extensions # ----------------- (none)