Skip to content

Commit

Permalink
add linux libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariosmsk committed Sep 1, 2020
1 parent bf9e98c commit 7f77945
Show file tree
Hide file tree
Showing 5 changed files with 904 additions and 1 deletion.
6 changes: 5 additions & 1 deletion epanet_matlab_toolkit/epanet.m
Original file line number Diff line number Diff line change
Expand Up @@ -9726,7 +9726,11 @@ function unloadMSX(obj)
else
fparam = '_enums.h';
end
file = [obj.LibEPANETpath, obj.LibEPANET, fparam];
if isunix
file = [obj.LibEPANETpath, 'epanet2', fparam];
else
file = [obj.LibEPANETpath, obj.LibEPANET, fparam];
end
if isdeployed
% file=[file(1:end-1), 'txt'];%epanet2.h-->epanet2.txt
file = 'epanet2_enums.txt';%epanet2_enums.h-->epanet2_enums.txt
Expand Down
Binary file added epanet_matlab_toolkit/glnx/epanet2
Binary file not shown.
Loading

0 comments on commit 7f77945

Please sign in to comment.