> On Mar 16, 2016, at 12:38 PM, Carl Hoefs <newsli...@autonomy.caltech.edu> > wrote: > > My Xcode header search paths setting: > > HEADER_SEARCH_PATHS = $(inherited) /opt/local/include/opencv > /opt/local/include/opencv2 /opt/local/include
First, I think you want to put /opt/local/include _before_ $(inherited) so it will take precedence. Second, it’s probably not necessary to add /opt/local/include/opencv. Presumably the OpenCV headers are included as <opencv/xxxx.h>, which means the include path should not contain the final ‘opencv’ component. In short: Try /opt/local/include $(inherited) —Jens
_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list (Xcode-users@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to arch...@mail-archive.com