I created a static library in Xcode that requires several dynamic libraries (e.g. libsqlite3.0.dylib). I can create an application that depends on my static library using cross-project references in Xcode, but it seems to me that I need to manually add all the necessary dynamic libraries to each of my application projects in order to link them.
Is there a way to set up a static library project in Xcode so that dependent applications automatically link to any dynamic libraries that it needs?
I tried adding dynamic libraries to the Framework list in my static library project, but this did not seem to have any effect.
iphone xcode
cduhn
source share