Main Content

addOption

Class: coder.make.BuildConfiguration
Namespace: coder.make

Add new option

Syntax

h.addOption(OptionName, buildItemHandle)

Description

h.addOption(OptionName, buildItemHandle) adds an option to coder.make.BuildConfiguration.Options.

Tips

Before using addOption, create a coder.make.BuildItem object to use as the second argument.

Input Arguments

expand all

BuildConfiguration handle, specified as a coder.make.BuildConfiguration object.

Example: h

Name of option, specified as a character vector. Choose a new option name.

Example: 'faster2'

Data Types: char

BuildItem handle, specified as a coder.make.BuildItem object that contains an option value.

Example: bi

Examples

Using the Option-Related Methods Interactively

tc = coder.make.ToolchainInfo;
cfg = tc.getBuildConfiguration('Faster Builds');
cfg.isOption('X Compiler')
ans  = 

     0
bi = coder.make.BuildItem('WV','wrongvalue')
bi = 

	Macro  : WV
	Value : wrongvalue
cfg.addOption('X Compiler',bi);
value = cfg.getOption('X Compiler')
value = 

	Macro  : WV
	Value : wrongvalue
cfg.setOption('X Compiler','rightvalue');
value = cfg.getOption('X Compiler')
value = 

	Macro  : WV
	Value : rightvalue

Version History

Introduced in R2013a