Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sébastien Villemot
dseries
Commits
531d78df
Commit
531d78df
authored
Sep 02, 2017
by
Stéphane Adjemian
Browse files
Updated for OSX x13 binaries.
parent
6d46b43e
Changes
2
Hide whitespace changes
Inline
Side-by-side
externals/x13/installx13.m
View file @
531d78df
...
...
@@ -26,6 +26,7 @@ if ~exist('x13.zip','file')
end
unzip
(
'x13.zip'
);
movefile
(
'binaries/linux'
,
'./linux'
);
movefile
(
'binaries/osx'
,
'./osx'
);
movefile
(
'binaries/windows'
,
'./windows'
);
rmdir
(
'binaries'
);
end
src/utilities/x13/select_x13_binary.m
View file @
531d78df
...
...
@@ -32,6 +32,13 @@ elseif ispc()
else
x13_binary
=
sprintf
(
'%s%s%s%s'
,
x13_binary
,
'32'
,
filesep
(),
'x13.exe'
);
end
elseif
ismac
()
x13_binary
=
sprintf
(
'%s%s%s'
,
dseries_x13_root
,
'osx'
,
filesep
());
if
is64bit
()
x13_binary
=
sprintf
(
'%s%s%s%s'
,
x13_binary
,
'64'
,
filesep
(),
'x13'
);
else
x13_binary
=
sprintf
(
'%s%s%s%s'
,
x13_binary
,
'32'
,
filesep
(),
'x13'
);
end
else
error
(
'X13 binary is not yet available for this plateform'
)
end
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment