Hi folks,
I'm building a library A which calls functions in library B. A depends on B.
I'm making an application P which calls functions in library A. That is, P depends on A. I want to arrange things so that P depends only on A, and P does not depend on B. How do I arrange this?
This is C++ on Visual Studio 2008. I get the impression that when I build A, devstudio ignores the setting in librarian - general - link library dependencies and copies anything it can into A from other libraries. What is meant to happen?

w.