I have an application I'm working on that uses two third party libraries, each with pre-compiled libs and dlls, one of which provides necessary .lib files for both debug and release builds (A[d].lib) and the other which provides only .lib files for release builds (B.lib). Compiling in Release mode (using MSVC9) works fine, however attempting to compile in debug mode fails because third party A
requires LIBCMTD.lib (or MSVCRTD.lib) while third party B
requires LIBCMT.lib (or MSVCRT.lib). Can I work around this or am I stuck debugging in release mode?
Thanks