在Windows上运行OpenGL

时间:2018-03-11 17:23:17

标签: c++ windows opengl

我希望运行一些基本的OpenGL程序,但是在使用g ++编译时我得到了错误

fatal error: GL/glew.h: No such file or directory

我的代码中有以下标题:

#include <stdio.h>
#include <stdlib.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>

如何在Windows 10上运行OpenGL?我在互联网上找不到任何有关GLEW和GLFW二进制文件的详细信息。

2 个答案:

答案 0 :(得分:-2)

  1. 如果您还没有下载并提取GLEW二进制文件 http://glew.sourceforge.net/
  2. 转到“项目属性”
  3. 选择C / C ++
  4. 在“其他包含目录”中,添加“... glew \ include”的路径 夹enter image description here

答案 1 :(得分:-2)

通过添加环境变量CPATH并为GLEW和GLFW添加路径来解决此问题包括文件夹。