Skip to content
Snippets Groups Projects
Commit b144fb81 authored by Ben Heasly's avatar Ben Heasly
Browse files

check for mac libs with homebrew

parent 3c5a6aa8
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,14 @@ function [status, result, advice] = rtbCheckNativeDependencies()
%% Check for OpenEXR library, also known as IlmImf.
if ismac()
% assume homebrew
findLibCommand = 'brew list | grep openexr';
else
findLibCommand = 'ldconfig -p | grep libIlmImf';
end
openExr = checkSystem('OpenEXR', ...
'ldconfig -p | grep libIlmImf', ...
findLibCommand, ...
'It looks like the OpenEXR library is not installed. Please visit http://www.openexr.com/. You might also try "sudo apt-get install openexr" or similar.');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment