我最近将mysql库链接到Qt Static时遇到了麻烦。这是我到目前为止所做的:
1)编译QT 5.4.2 static
2)编译mysql插件驱动程序
3)之后我将.dll和.a文件复制到静态和非静态QT的插件文件夹
4)对于非静态QT,一切正常,但我无法使用静态QT编译项目
在我的.pro文件中
LIBS += -LC:/Qt/Static/5.3.1/plugins/sqldrivers -lqsqlmysql
QTPLUGIN += libqsqlmysql
错误::-1: error: cannot find -llibqsqlmysql
我也在.pro文件上收到警告:
Project WARNING: Plugin class name could not be determined for libqsqlmysql plugin.
请帮忙