Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified distribution/mexa64/mym.mexa64
Binary file not shown.
Binary file modified distribution/mexmaca64/mym.mexmaca64
Binary file not shown.
Binary file modified distribution/mexw64/mym.mexw64
Binary file not shown.
2 changes: 2 additions & 0 deletions mex_compilation/compile_mexmaca64.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ function compile_mexmaca64()
mex( ...
'-v', ...
'-largeArrayDims', ...
'LDFLAGS=$LDFLAGS -ld_classic', ...
'MACOSX_DEPLOYMENT_TARGET=13.0', ...
sprintf('-I"%s"', mysql_include), ... % sprintf('-I"%s"', mysql_platform_include), ...
sprintf('-L"%s"', mysql_lib), ... % sprintf('-L"%s"', mariadb_lib), ...
'-lmysqlclient', ...
Expand Down
6 changes: 3 additions & 3 deletions mktbx.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
% 'mex_compilation', 'mysql-connector', 'notebook', 'src', 'zlib', ...
% '*.txt', '*.env', '*.prf', '*.md', '*.yml', 'tests', '.github'};
d = dir(pwd);
exclude = {d(~endsWith({d.name},'distribution')).name};
exclude = {d(~endsWith({d.name},{'.', '..', 'mym.m', 'distribution'})).name};

d = dir('distribution');
% include = {d(~startsWith({d.name},".")).name};
include = fullfile('distribution',{d(~startsWith({d.name},".")).name});
include = ['mym.m', fullfile('distribution',{d(~startsWith({d.name},".")).name})];

ghtb.package('mym', ...
'Raphael Guzman', ...
Expand All @@ -34,7 +34,7 @@
'.'), ...
include, ...
'toolboxVersionDir', fullfile('distribution',mexext()), ...
'toolboxRootDir', pwd);
'toolboxRootDir', '.', 'toolboxProjectDir', '.');

tbx = [];
if install
Expand Down