As mentioned in title I need some help on working workspace with static libraries! This is my situation:
- App project;
 - Library A
 - Library B
 
The depends:
- App projects depends by Library A and Library B
 - Library A depends by Library B
 - Library B is atomic
 
So ... I have tried a lot of configurations, linking B to A, and A to App; or linking B to A and A & B to App ... but always have error from linker. In first case linker cannot find symbols of library B, in second case linker return error of symbol duplicate in A and B!
Someone can help me please???