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
UPDATE:
I do not wish to correlate from one to many. I just want to be able to pick one and stick with it. So in my case I would correlate Debug in the main project to 3rdParty:shared_debug
How do I do that?
When I say build for the solution for debug I want the 3rd party stuff to build as well