标签:des style blog http color 使用
qwt是基于Qt的开源图表库
从官网下载qwt的源码
http://sourceforge.jp/projects/sfnet_qwt/downloads/qwt/6.1.0/qwt-6.1.0.tar.bz2/
解压,进入目录
tar jxvf qwt-6.1.0.tar.bz2 cd qwt-6.1.0
编译安装
/home/lz/Qt5.3.0/5.3/gcc/bin/qmake make make install
若make
出现以下错误:
GL/gl.h: No such file or directory # include <GL/gl.h>
原因是没有安装opengl库,终端执行命令:
sudo apt-get install mesa-common-dev
在/usr/local/目录下将生成qwt-6.1.0的目录
将qwt-6.1.0下lib、 desiger目录下的库文件拷贝到Qt-creator 的lib和designer下
cd /usr/local/qwt-6.1.0/ cp plugins/designer/libqwt_designer_plugin.so /home/lz/Qt5.3.0/Tools/QtCreator/bin/plugins/designer/ cp lib/* /home/lz/Qt5.3.0/Tools/QtCreator/lib/ cp lib/* /home/lz/Qt5.3.0/5.3/gcc/lib
将qwt的头文件拷贝至/usr/include
cp include/* /usr/include/
现在qt-creator可以使用qwt了
Qt-Creator 加入qwt库,布布扣,bubuko.com
标签:des style blog http color 使用
原文地址:http://www.cnblogs.com/Jasonsblog/p/3841741.html