From 18a62066ab7b6191852735e762184b113fcf6b67 Mon Sep 17 00:00:00 2001 From: Mattia Montanari Date: Tue, 18 Oct 2022 22:23:32 +0200 Subject: [PATCH] Point to source and include dir after repo refactor --- examples/matlab/runme.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/matlab/runme.m b/examples/matlab/runme.m index 1657436..bc1a1d1 100644 --- a/examples/matlab/runme.m +++ b/examples/matlab/runme.m @@ -38,11 +38,11 @@ end % TRY COMPILING MEX FILE fprintf('Compiling mex function... ') try -mex(fullfile('..','..','src','openGJK.c'),... % Source of openGJK +mex(fullfile('..','..','openGJK.c'),... % Source of openGJK '-largeArrayDims', ... % Support large arrays optflug, ... % Compiler flag for debug/optimisation - fullfile('-I..','..','include'),... % Folder to header files - '-outdir', pwd,... % Ouput directory for writing mex function + fullfile('-I','..','..','include'),... % Folder to header files + '-outdir', pwd, ... % Ouput directory for writing mex function '-output', 'openGJK',... % Name of ouput mex file '-DMATLAB_MEX_BUILD',... % Define variable for mex function in source files silflag ) % Silent/verbose flag