Where should private .dylib and .so files be placed within an app?

In light of the draconian SIP coming in 10.11, I need to find a home for my private libraries within my built app. I just tried placing them into the Frameworks folder in a CopyFilesStep in the build steps, but I get unhandled FunctionNotFound exceptions when I do that.

Where should we place these since app files in /usr/lib is no longer permitted?

If you’re declaring into it, you’ll need to change the library name to something like “@executable_path/…/Frameworks/MyLibrary.dylib”.

Thanks, @Joe Ranieri - I’d forgotten about the @ rule…