Skip to content

Commit f81cc92

Browse files
committed
[Enhancement] Add flags for compile/wrap-only (#11)
1 parent 9cdb878 commit f81cc92

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.mpython/spm_make_python.m

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
2-
function spm_make_python
1+
function spm_make_python(compile, wrap)
2+
try
3+
compile = logical(compile);
4+
catch
5+
compile = true;
6+
end
7+
try
8+
wrap = logical(wrap);
9+
catch
10+
wrap = true;
11+
end
312

413
[cpath, ~, ~] = fileparts(mfilename('fullpath'));
514
cd(cpath);
@@ -102,10 +111,12 @@
102111

103112
opath = fullfile(cpath, '..');
104113

114+
if compile
115+
mpython_compile(spmpath, opath, 'spm', toolboxes)
116+
end
105117

106-
% mpython_compile(spmpath, opath, 'spm', toolboxes)
107-
108-
109-
mpython_wrap(spmpath, opath, 'spm', true, fullfile(cpath, 'templates'))
118+
if wrap
119+
mpython_wrap(spmpath, opath, 'spm', true, fullfile(cpath, 'templates'))
120+
end
110121

111122
disp('Done!');

0 commit comments

Comments
 (0)