Building MacOS X Framework
How do I build OpenCV as a Mac OS X framework? I can build OpenCV as a UNIX-style library fine, and I can also build it as a framework for iOS. However I don't see any CMake option for a Mac framework, nor do I see a build script like the one used for the iOS framework.
Am I missing something?
+1
I've followed these steps, and all worked fine: mkdir build cd build cmake -G "Unix Makefiles" .. make -j8 sudo make install
But what I really want is a universal OpenCV.framework, and I don't see how to get that. If I open up the FaceTracker.xcodeproj from samples/MacOSX I get the "missing base SDK" error and can't run it. The README.txt file says to use the 'make_frameworks.sh' script, but that's apparently been removed.
I'm completely stumped here. Please help.
I'm having the same issues. Anyone have a solution to this?