Main Content

removePostbuildTool

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

Remove postbuild build tool

Syntax

h.removePostbuildTool(bldtl_name)

Description

h.removePostbuildTool(bldtl_name) removes the named build tool from PostbuildTools.

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

h.addPostbuildTool('copier');
h.PostbuildTools
ans = 


# -----------------------
# "PostbuildTools" List
# -----------------------
copier   = <coder.make.BuildTool>
Download = <coder.make.BuildTool>
Execute  = <coder.make.BuildTool>

h.removePostbuildTool('copier')

Version History

Introduced in R2013a