How to disable adding 'd' suffix to debug library name in qmake on windows?

让人想犯罪 __ 提交于 2019-12-13 15:25:35

问题


I created project for QML C++ plugin in QtCreator and debug version have 'd' suffix appended to the name, for example plugind.dll instead of plugin.dll. How can configure project not to add this suffix? Qt version 4.8.1, windows 7.


回答1:


You can write this line into the .pro file:

TARGET = YourProgramName



来源:https://stackoverflow.com/questions/12295514/how-to-disable-adding-d-suffix-to-debug-library-name-in-qmake-on-windows

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!