问题
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