Hi Robert,
Surely VS can't be so bad that all dependencies must be debug built to enable debug development? How do other 3rd party libs do it?
Any dependency that uses C++ (more specifically the C++ runtime). So most 3rd party libs are OK since they're C only.
The problem is mixing different versions of the C++ runtime. It's a big no-no in Visual C++ development. You always need to make sure that you have the same runtime linker flag (/MD for release, /MDD for debug). It's been widely discussed before...
J-S -- ______________________________________________________ Jean-Sebastien Guay [email protected] http://www.cm-labs.com/ http://whitestar02.webhop.org/ _______________________________________________ osg-submissions mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
