Класс: coder.make. BuildTool
Пакет: coder.make
Установите значение директивы в Directives
h.setDirective(name,value)
присваивает значение именованной директиве в h
.setDirective(name
,value
)coder.make.Directives
.
Следующий пример кода показывает setDirective
во фрагменте файла intel_tc.m
от Добавления Пользовательского примера по Набору инструментальных средств.
% ------------------------------ % C Compiler % ------------------------------ tool = tc.getBuildTool('C Compiler'); tool.setName('Intel C Compiler'); tool.setCommand('icl'); tool.setPath(''); tool.setDirective('IncludeSearchPath','-I'); tool.setDirective('PreprocessorDefine','-D'); tool.setDirective('OutputFlag','-Fo'); tool.setDirective('Debug','-Zi'); tool.setFileExtension('Source','.c'); tool.setFileExtension('Header','.h'); tool.setFileExtension('Object','.obj'); tool.setCommandPattern('|>TOOL<| |>TOOL_OPTIONS<| |>OUTPUT_FLAG<||>OUTPUT<|');
tc = coder.make.ToolchainInfo; tool = tc.getBuildTool('C Compiler'); tool.addDirective('IncludeSearchPath','-O'); tool.setDirective('IncludeSearchPath','-I'); tool.getDirective('IncludeSearchPath')
ans = -I