Main Content

removePrebuildTool

Class: coder.make.ToolchainInfo
Namespace: coder.make

Remove prebuild build tool

Syntax

h.removePrebuildTool(bldtl_name)

Description

h.removePrebuildTool(bldtl_name) removes the named build tool from PrebuildTools.

Input Arguments

expand all

A coder.make.ToolchainInfo object, specified using an object handle, such as h. To create h, enter h = coder.make.ToolchainInfo in a MATLAB® Command Window.

Build tool name, specified as a character vector or string scalar.

Data Types: char | string

Examples

If you have an example coder.make.ToolchainInfo.PrebuildTools object that contains a BuildTool object such as copyFiles:

h.PrebuildTools
ans = 


# ----------------------
# "PrebuildTools" List
# ----------------------
copyFiles = <coder.make.BuildTool>
h.removePrebuildTool('copyFiles')

Version History

Introduced in R2013a