summaryrefslogtreecommitdiff
path: root/macros/findDeps/getAllHeaders.sci
diff options
context:
space:
mode:
authorsiddhu89902017-06-30 11:35:55 +0530
committersiddhu89902017-06-30 11:35:55 +0530
commitbee6bf6e37f6c36fb18b6132702e1528b7edafc2 (patch)
tree1090789e0205f0054c6b31b356b9417c8707176b /macros/findDeps/getAllHeaders.sci
parent2c3b9e1055c8c9dfe874df3b7743c4a765042316 (diff)
parent7325b038e06f1571402a63caef2d75db30bd13c1 (diff)
downloadscilab2c-bee6bf6e37f6c36fb18b6132702e1528b7edafc2.tar.gz
scilab2c-bee6bf6e37f6c36fb18b6132702e1528b7edafc2.tar.bz2
scilab2c-bee6bf6e37f6c36fb18b6132702e1528b7edafc2.zip
Matrix declaration modified
Diffstat (limited to 'macros/findDeps/getAllHeaders.sci')
-rw-r--r--macros/findDeps/getAllHeaders.sci13
1 files changed, 7 insertions, 6 deletions
diff --git a/macros/findDeps/getAllHeaders.sci b/macros/findDeps/getAllHeaders.sci
index 9cd2d224..2141128f 100644
--- a/macros/findDeps/getAllHeaders.sci
+++ b/macros/findDeps/getAllHeaders.sci
@@ -60,7 +60,7 @@ function allHeaders = getAllHeaders(SharedInfo)
"src/c/matrixOperations/includes/logm.h"
"src/c/matrixOperations/includes/ones.h"
"src/c/matrixOperations/includes/matrixSquaredMagnitude.h"
- "src/c/linearAlgebra/includes/spec.h" // moved from matrixOperation to linearAlgebra
+ "src/c/linearAlgebra/includes/spec.h"
"src/c/matrixOperations/includes/matrixTranspose.h"
"src/c/matrixOperations/includes/determ.h"
"src/c/matrixOperations/includes/matrixMultiplication.h"
@@ -219,8 +219,8 @@ function allHeaders = getAllHeaders(SharedInfo)
"src/c/linearAlgebra/includes/schur.h"
"src/c/linearAlgebra/includes/balanc.h"
"src/c/linearAlgebra/includes/svd.h"
- "src/c/linearAlgebra/includes/hess.h"
- "src/c/linearAlgebra/includes/sva.h"
+ "src/c/linearAlgebra/includes/hess.h"
+ "src/c/linearAlgebra/includes/sva.h"
"src/c/linearAlgebra/includes/rcond.h"];
@@ -252,7 +252,7 @@ function allHeaders = getAllHeaders(SharedInfo)
"src/c/hardware/avr/includes/AVRUtil.h"
"src/c/hardware/avr/includes/AVRPeripheralTimer.h"
"src/c/hardware/avr/includes/AVRPeripheralUART.h"
- ];
+ ];
RPi_headers = [
"thirdparty/includes/WiringPi/wiringPi.h"
@@ -263,7 +263,7 @@ function allHeaders = getAllHeaders(SharedInfo)
"src/c/hardware/rasberrypi/includes/RPIPeripheralThreading.h"
"src/c/hardware/rasberrypi/includes/RPIPeripheralPinISR.h"
"src/c/hardware/rasberrypi/includes/RPIPeripheralPWM.h"
- ];
+ ];
OpenCV_headers = [
"src/c/imageProcessing/includes/cvcore.hpp"
@@ -285,7 +285,8 @@ function allHeaders = getAllHeaders(SharedInfo)
allHeaders = cat(1,allHeaders,OpenCV_headers);
end
- if((mtlb_strcmp(part(SharedInfo.Includelist(1),1:5),'odefn') == %T))
+ if(size(SharedInfo.Includelist) <> 0 & (mtlb_strcmp(part(SharedInfo.Includelist(1),1:5),'odefn') == %T))
+ disp("Hi")
allHeaders = cat(1,allHeaders,"thirdparty/includes/GSL");
end