Is it possible to add dynamic library in static library under iphone application?

77 Views Asked by At

I am creating a static library that contains functionality I want to provide to some other applications. However, my static library requires libxml2.dylib and libsqlite3.0.dylib dynamic libraries. Now when I am compiling my static library, I got the error "libsqlite3.0.dylib is a dynamic library, not added to the static library" and "libz.dylib is a dynamic library, not added to the static library". Is there a way to add or link dynamic library to static library? Thanks..

0

There are 0 best solutions below