Let's suppose that I want to create an Xcode static library. I use the Xcode provided template for this kind of project "Cocoa Touch Static Library", i want this library in a separate project because:
- I want be able to keep this project under git version control
- I want to be able to import this static library under other project as a git submodule
Now let's suppose that this library depend on third-part library such as ASIHTTPRequest. Maybe in my main project (the one that import my static library) i will also depend on the same library. What's the best way to handle this multi-dependecy?
PLUS: Now suppose that i want to create a second static library (this one is more specific for some kind of task and i don't want to mix this code with the code of the previous mentioned static library) but this second static library depend on the after mentioned static library. Again what the best way to handle this