I have one static library for testing and one for release. The debugging static lib has calls that aren't available in the release version. In my code I use preprocessor macro to guard around calls that are available in the testing static lib.
How do I include both libs in the project and make one of them be linked during the linking process depending on the build I am doing?
NOTE: I don't have access to the code to the static library so I can't make any changes. All I have access to is the client code making use of the lib.