from
Simulink Support Package for Beagleboard hardware (R2012a)
by MathWorks Simulink Team
Simulink block library for creating standalone applications for the BeagleBoard
|
| rtwmakecfg |
function makeInfo = rtwmakecfg
% RTWMAKECFG Add include and source directories to make files.
% makeInfo = RTWMAKECFG returns a structured array containing
% following fields:
%
% makeInfo.includePath - cell array containing additional include
% directories. Those directories will be
% expanded into include instructions of
% generated make files.
%
% makeInfo.sourcePath - cell array containing additional source
% directories. Those directories will be
% expanded into rules of generated make
% files.
%
% makeInfo.library - structure containing additional runtime library
% names and module objects. This information
% will be expanded into rules of generated make
% files.
% Copyright 2010 The MathWorks, Inc.
% $Revision: 1.1.6.1 $
% $Date: 2012/01/17 15:49:02 $
makeInfo.includePath = { ...
fullfile(pwd,'..', 'sfcn', 'include'), ...
fullfile(pwd,'..', 'sfcn', 'src')
};
makeInfo.sourcePath = { ...
fullfile(pwd,'..', 'sfcn', 'src')
};
makeInfo.library = { };
|
|
Contact us