How to disable adding 'd' suffix to debug

2019-07-07 04:01发布

问题:

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



标签: qt qt4 qmake