编译环境:mingw-w64
使用qtcreator打开ibase.pro,ibase.pro位置例如:R:\qt-everywhere-opensource-src-4.8.5\src\plugins\sqldrivers\ibase\ibase.pro
添加以下内容
DESTDIR = R:/bin
INCLUDEPATH += "D:/develop/database/Firebird/include"
LIBS += "D:/develop/database/Firebird/lib/fbclient_ms.lib"
其中 DESTDIR = R:/bin 是非必需的
INCLUDEPATH 和 LIBS 中得 firbird路径修改为你自己的路径
点击qtcreator中小锤子“构建按钮”,就行了。
如果添加了 DESTDIR 就到那个路径下找.a和.dll文件,放到你自己的qtsdk里面的sqldrivers路径下即可,例如:D:\develop\QtSDK\qt-4.8.5-win64-mingw64-4.8.0\plugins\sqldrivers