On 5. Aug 2012, at 13:55, Robert Hauck [via Software] wrote: > Hi all > > I'm wondering if it would be possible to extend the CMake build system to > properly handle debug libraries under Windows. The reason is, it would be > much easier to build Equalizer with CMake externalProject if we could > separate debug from release libs.
My understanding is that this is only a problem for install/package results, right? My personal preference would be: <inst>/lib/libFoo.dso <inst>/lib/debug/libFoo.dso <inst>/bin/fooApp <inst>/bin/debug/fooApp <inst>/include/foo ...which allows dynamically using debug libraries if needed. Of course, VS doesn't support that. I understand the Windows way is: <inst>/lib/libFoo.dso <inst>/lib/libFoo.dbg.dso <inst>/bin/fooApp <inst>/bin/fooApp.dbg <inst>/include/foo ...which is broken, but out of our hands. The first approach would be cross-platform, the second more Windows-ish. Since I am not the major stake holder here, I leave the final call up to Robert. Cheers, Stefan. -- View this message in context: http://software.1713.n2.nabble.com/Feature-Request-Proper-handling-of-debug-libraries-Windows-tp7580968p7580976.html Sent from the Equalizer - Parallel Rendering mailing list archive at Nabble.com. _______________________________________________ eq-dev mailing list [email protected] http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev http://www.equalizergraphics.com

