Hello!
After I successfully built OCE on Mountain Lion I ran ma Xcode project. Everything went well, when suddenly before the app could started I got this error:
dyld: Library not loaded: libFWOSPlugin.2.dylib
I figured it out, that Xcode is searching for this .dylib in /usr/lib so if I copy it there, than the error dismisses but a new one comes in searching for the next .dylib...hence if I copy all of these libs to /usr/bin the app will start...but I don't think this is the right solution!
How can I tell Xcode to search in other places for these libraries?
Thanks in advance!