I want to get rid of some compiler warnings that I get when linking together a third party static library with my project. I compile it in debug mode all the time since I'm developing it, but the third party lib is an external library without the symbols.
The compiler shows the following warnings: warning LNK4099: PDB 'vc90.pdb' was not found with ...
Can I resolve this warning without ignoring it? Why would I need to link the static libraries with debugging symbols anyway if I don't need to debug them.