我想尝试使用QML ShaderEffectItem on QGraphicsView
我已经从https://qt.gitorious.org/qt-labs/qml1-shadersplugin克隆了文件,如何写在帖子中,我已经在~/Dev/GitRepo/qml1-shadersplugin$
编译了这个插件:
使用QtCreator编译此文件:qmlshadersplugin.pro
但现在我在这个文件夹中运行(〜/ Dev / GitRepo / qml1-shadersplugin):make install
我有很多:错误:
~/Dev/GitRepo/qml1-shadersplugin$ make installcd src/ && make -f Makefile install
make[1]: Entering directory `/home/goran/Dev/GitRepo/qml1-shadersplugin/src'
g++ -c -m32 -pipe -O2 -D_REENTRANT -Wall -W -fPIC -DQT_NO_DEBUG -DQT_PLUGIN -DQT_DECLARATIVE_LIB -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../../QtSDK/Desktop/Qt/474/gcc/mkspecs/linux-g++-32 -I. -I../../../../QtSDK/Desktop/Qt/474/gcc/include/QtCore -I../../../../QtSDK/Desktop/Qt/474/gcc/include/QtGui -I../../../../QtSDK/Desktop/Qt/474/gcc/include/QtOpenGL -I../../../../QtSDK/Desktop/Qt/474/gcc/include/QtDeclarative -I../../../../QtSDK/Desktop/Qt/474/gcc/include -I/usr/X11R6/include -I. -o qmlshadersplugin_plugin.o qmlshadersplugin_plugin.cpp
In file included from ../../../../QtSDK/Desktop/Qt/474/gcc/include/QtOpenGL/QtOpenGL:5:0,
from shadereffectitem.h:46,
from qmlshadersplugin_plugin.cpp:43:
../../../../QtSDK/Desktop/Qt/474/gcc/include/QtOpenGL/qgl.h:77:20: fatal error: GL/gl.h: No such file or directory
compilation terminated.
make[1]: *** [qmlshadersplugin_plugin.o] Error 1
make[1]: Leaving directory `/home/igor/Dev/GitRepo/qml1-shadersplugin/src'
make: *** [sub-src-install_subtargets] Error 2
有什么问题?
答案 0 :(得分:1)
GL/gl.h: No such file or directory
这意味着您要么没有安装opengl库(非常不可能),要么您没有在qmake文件中启用它(非常可能)。要在qmake文件中启用opengl,您需要添加以下行:
QT += opengl
有关它的更多信息here。