diff options
author | siddhu8990 | 2017-06-21 15:18:15 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-21 15:18:15 +0530 |
commit | adbc46709966e50b3fed6ff061afff9e59d4b79c (patch) | |
tree | c0a375b9c280a878e451d06f9cac2e90a433165d /macros/runsci2c.sci | |
parent | 240e5e93815eef0992834ec7bd2a8162acca13f0 (diff) | |
parent | 18f7cf96174799b674115e43f108423fa5d0fc9c (diff) | |
download | scilab2c-adbc46709966e50b3fed6ff061afff9e59d4b79c.tar.gz scilab2c-adbc46709966e50b3fed6ff061afff9e59d4b79c.tar.bz2 scilab2c-adbc46709966e50b3fed6ff061afff9e59d4b79c.zip |
Merged Ukasha's work, code generation for control loop changed
Diffstat (limited to 'macros/runsci2c.sci')
-rw-r--r-- | macros/runsci2c.sci | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/runsci2c.sci b/macros/runsci2c.sci index f05cb83d..ae38e57f 100644 --- a/macros/runsci2c.sci +++ b/macros/runsci2c.sci @@ -113,7 +113,7 @@ PrintStepInfo('Copying sources', FileInfo.GeneralReport,'both'); for i = 1:size(allSources, "*")
// DEBUG only
- //disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/");
+ disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/");
//Copy ode related functions only if 'ode' function is used.
if(~isempty(strstr(allSources(i),'dode')))
if(size(SharedInfo.Includelist) <> 0)
@@ -130,7 +130,7 @@ end PrintStepInfo('Copying headers', FileInfo.GeneralReport,'both');
for i = 1:size(allHeaders, "*")
// DEBUG only
- //disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/");
+ disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/");
copyfile(allHeaders(i), SCI2COutputPath+"/includes/");
end
|