Class: coder.BuildConfig
Package: coder
Determine if build configuration represents specified target
tf = bldcfg.isCodeGenTarget(target)
returns
true (1) if the code generation target of the current build configuration
represents the code generation target specified by tf
= bldcfg
.isCodeGenTarget(target
)target
.
Otherwise, it returns false (0).
|
| ||||||||
|
Code generation target specified as a character vector or cell array of character vectors.
Specify For example: ... mytarget = {'sfun','mex'}; tf = bldcfg.isCodeGenTarget(mytarget); ... |
|
The value is true (1) if the code generation target of the build
configuration represents the code generation target specified by |