Skip to content

Commit

Permalink
Merge pull request #23 from sqlp/fix-win
Browse files Browse the repository at this point in the history
fix windows detection
  • Loading branch information
mcg1969 authored Apr 10, 2024
2 parents 5b3f79f + 8d4a786 commit 8456f3a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install_sdpt3.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ function install_sdpt3( varargin )
mdir = 'o_maci';
case 'aarch64-apple-darwin23.4.0'
mdir = 'o_maca';
case 'i686-w64-mingw32'
case 'x86_64-w64-mingw32'
mdir = 'o_win';
otherwise
error(sprintf('Unexpected computer type: %s', COMPUTER));
end
mext = 'mex';
else
Expand Down

0 comments on commit 8456f3a

Please sign in to comment.