我在 kubuntu linux 11.10 中编译“hello world”应用程序时遇到了一些问题。这是项目文件:
// opengltext.pro
SOURCES += \
main.cpp
QT += opengl
还有一个 cpp 文件:
// main.cpp
#include <QApplication>
int main( int argc, char *argv[] )
{
QApplication app( argc, argv );
return app.exec();
}
我有以下错误:
:-1: error: cannot find -lGLU
:-1: error: cannot find -lGL
:-1: error: collect2: ld returned 1 exit status
我尝试在谷歌中找到这个问题的解决方案。但是没找到。我尝试安装:
sudo apt-get install libglw1-mesa-dev
但此错误仍在发生
有什么问题?