I was following another thread, as per answer: https://stackoverflow.com/a/30909377/6293090
The STL header can't be found by compiler when they are imported or included from objective C files The line:
\#include <opencv2/opencv.hpp>
or:
\#import <opencv2/opencv.hpp>
In my opencv.m wrapper compiler can't find headers included by opencv.hpp or , ('list' file not found), However, If I add C++ file to the project and use the same #include line in it, it compiles fine. I haven't found separate header search path for objective C in the project's build setting.
What am I missing? Thanks.