I developed the xCode static library for the iPhone App using OpenCV. Now I want to provide them with my static library, but I do not want them to experience the difficulties associated with the fact that OpenCV worked in its project, changing the build settings and everything that I already did in the static library.
I usually use the "Projectception" method, dragging my static-library project into my main xCode project. However, when I use this method, I usually need to add all the frameworks that I use in the static library project, again in my main project in the build phase of Link Binary with Libraries.
So my question is: is there a way that OpenCV works only in my static library project and that a new project that imports this static library should not do anything extra for OpenCV to work?
source share