I have two projects in a solution (VS 2015). One project (A) is the entry project and generates an executable. The second project (B) generates a static library. I set B as a reference in A. However B needs itself to link against some precompiled static libraries that I have locally on the dev machine. How do I do this? If I set the project's configuration type to "static library" all the linker options disappear. Thanks
Edit: I added the external libs dependencies in project A as usual via Properties > Linker > Input > Additional Dependecies but this does not solve the issue.