Класс: coder.make.BuildTool
Пакет: coder.make
Установите расширение файла для именованного типа файла в FileExtensions
h.setFileExtension(name,value)
устанавливает значение расширения именованного типа файла в h
.setFileExtension(name
,value
)coder.make.BuildTool.FileExtensions
.
Следующий пример кода показывает setFileExtension
в части intel_tc.m
файл из руководства «Добавление пользовательских наборов инструментальных средств в MATLAB ® Coder™ Build Process ».
% ------------------------------ % 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'); blditm = coder.make.BuildItem('CD','.cd')
bldtm = Macro : CD Value : .cd
tool.addFileExtension('SourceX',blditm) value = tool.getFileExtension('SourceX')
value = .cd
tool.setFileExtension('SourceX','.ef') value = tool.getFileExtension('SourceX')
value = .ef