How do I correlate build configurations in dependant vcproj files with different names?

Posted by Tim on Stack Overflow See other posts from Stack Overflow or by Tim
Published on 2010-06-14T19:09:23Z Indexed on 2010/06/14 19:12 UTC
Read the original article Hit count: 172

I have a solution file that requires a third party library (open source). The containing solution uses the typical configuration names of "Debug" and "release".

The 3rd party one has debug and release configs for both DLL and static libs - their names are not "Debug" and "Release".

How do I tell the solution to build the dependency first and how do I correlate which config to the dependant config?

i.e. MyProject:Debug should build either 3rdParty:debug_shared or 3rdParty:debug_static

© Stack Overflow or respective owner

Related posts about c++

Related posts about visual-studio-2008