summaryrefslogtreecommitdiffstats
path: root/build.m
diff options
context:
space:
mode:
Diffstat (limited to 'build.m')
-rw-r--r--build.m22
1 files changed, 0 insertions, 22 deletions
diff --git a/build.m b/build.m
deleted file mode 100644
index f5ef2a1..0000000
--- a/build.m
+++ /dev/null
@@ -1,22 +0,0 @@
-% @file build.m
-% @brief build the matleap mex module
-% @author Jeff Perry <jeffsp@gmail.com>
-% @version 1.0
-% @date 2013-09-12
-
-libdir_switch='-L/usr/lib/Leap/';
-
-% create the mex command line
-fn='matleap.cpp';
-fprintf('Compiling %s\n',fn);
-cmd=['mex',...
- ' -I/usr/include ',...
- libdir_switch,...
- ' -lLeap ',...
- fn];
-fprintf('Evaluating "%s"\n',cmd)
-
-% run mex
-eval(cmd)
-
-fprintf('Done\n')