Additional libraries - Static library files to link with the generated code - MATLAB (original) (raw)

Main Content

Static library files to link with the generated code

Description

Settings

String array

List of static library files.

Programmatic Use

**Property:**CustomLibrary
Values: ' ' | string array cell array of character vectors character vector

Version History

Introduced in R2011a

expand all

Specifying multiple file names, paths, or reserved names in code configuration objects by using character vectors or string scalars that have delimiters produces an error. Use string arrays and a cell array of character vector instead. For example, cfg.CustomLibrary = ["myLib1.lib","myLib2.lib"]; orcfg.CustomLibrary = {'myLib1.lib','myLib2.lib'}; .

Specifying multiple file names, paths, or reserved names in code configuration objects by using character vectors or string scalars that have delimiters produces a warning and will be removed in a future release. Use string arrays and a cell array of character vector instead. For example, cfg.CustomLibrary = ["myLib1.lib","myLib2.lib"]; or cfg.CustomLibrary = {'myLib1.lib','myLib2.lib'}; .

In a future release, specifying multiple file names, paths, or reserved names in code configuration objects by using character vectors or string scalars that have delimiters will be removed. Use string arrays and a cell array of character vectors instead. For example, cfg.CustomLibrary = ["myLib1.lib","myLib2.lib"]; or cfg.CustomLibrary = {'myLib1.lib','myLib2.lib'}; .