OPENGL oppening错误

时间:2014-03-16 23:30:38

标签: opengl

我试图为opengl打开一个新项目,但是有一个像bellow一样的错误: 1> ------ Build build:项目:ConsoleApplication1,配置:Debug x64 ------ 1 GT; Source.cpp 1> LINK:致命错误LNK1104:无法打开文件' freeglut.lib' ==========构建:0成功,1个失败,0个最新,0个跳过==========

我认为我做的项目设置很好,我有所有dll lib文件到位。 我试过的代码如下:

#include<C:\Users\virtouso\Documents\Downloads\Compressed\freeglut\include\GL\glut.h>

void init()
{
glClearColor(0,0,0,0);
glMatrixMode(GL_PROJECTION);
gluOrtho2D(0,100,0,200);
}
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(1.0,0.0,0.0);
glBegin(GL_LINES);
glVertex2i(30,100);
glVertex2i(50,10);
glEnd();
glFlush();
}
int main(int argc,char **argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(500,500);
glutInitWindowPosition(200,200);
glutCreateWindow("Line");
init();
glutDisplayFunc(display);
glutMainLoop();
return 0;
}

1 个答案:

答案 0 :(得分:1)

您确定您的图书馆搜索路径包含具有freeglut.lib的文件夹吗?