I'm using a provided .pro file and for some reason, it's configured so that the debug libraries do not have "d" appended to their library name. What causes this and how do I restore it?
E.g. QtGui4.dll (release) and QtGuid4.dll (debug)
Thanks.
|
|
|
|
|
|
|
In your .pro file, add
See: http://doc.qtsoftware.com/4.5/qmake-tutorial.html#making-an-application-debuggable |
||
|
|
|
|
Add this to the .pro file and it will append _debug for mac and a d for windows debug build.
|
|||