Re: [CMake] Using debug libraries in Qt frameworks with both debug and release libraries

2009-06-09 Thread Michael Jackson
http://doc.trolltech.com/4.5/mac-differences.html Which will then send you to: http://developer.apple.com/technotes/tn2004/tn2124.html#SECDEBUGLIB and the next section following that: http://developer.apple.com/technotes/tn2004/tn2124.html#SECJUSTONELIB HTH ___

Re: [CMake] Using debug libraries in Qt frameworks with both debug and release libraries

2009-06-09 Thread Clinton Stimpson
Its done at runtime by setting the DYLD_IMAGE_SUFFIX environment variable to "_debug" http://developer.apple.com/documentation/Darwin/Reference/Manpages/man1/dyld.1.html You can also add your own softlinks in the framework if you want to make your own suffix as _debug is common and will pull

[CMake] Using debug libraries in Qt frameworks with both debug and release libraries

2009-06-09 Thread Moreland, Kenneth
I recently compiled Qt on my Mac with frameworks that contain both debug and release versions of their libraries. I hoped (perhaps naively) that the debug libraries would be used whenever I performed a debug compile of ParaView. No such luck. The release libraries are always used. Does anyon