准备工作,在系统环境变量中增加如下项目:
path=C:\Qt\Qt5.3.0\5.3\mingw482_32\bin;C:\Qt\Qt5.3.0\Tools\mingw482_32\bin;%path%
QT_PLUGIN_PATH C:\Qt\qwt-6.1.0\plugins
QTDIR C:\Qt\Qt5.3.0\5.3\mingw482_32
编译QtCreator:
安装QtCreator:
编译Qwt:
安装Qwt:
使用Qwt,配置.pro文件:
在建立的工程文件(filename.pro)中添加如下内容:
DEFINES += QWT_DLL
CONFIG+=qwt
INCLUDEPATH+=C:\Qt\Qwt-6.1.0\include
CONFIG(release,debug|release):LIBS+=-L"C:\Qt\Qwt-6.1.0\lib"-lqwtd
CONFIG(debug,debug|release): LIBS+=-L"C:\Qt\Qwt-6.1.0\lib"-lqwt
原文地址:http://www.cnblogs.com/zhhkang/p/3777679.html