VS error C1083: 无法打开包括文件:“gl\glew.h”: No such file or directory\
大家在使用#include <gl/glew.h>时经常会出现下面的错误:error C1083: 无法打开包括文件:“gl\glew.h”: No such file or directory\
解决方法如下:
1.下载
2. copying:
bin/glew32.dll to %SystemRoot%/system32 %SystemRoot%在我的电脑为: C:\Windows 这个大家都一样
lib/glew32.lib to {VC Root}/Lib {VC Root}在我的电脑为: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A
include/GL/glew.h to {VC Root}/Include/GL {VC Root}在我的电脑为: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A
include/GL/wglew.h to {VC Root}/Include/GL {VC Root}在我的电脑为: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A
3.重新运行程序
经过这三个步骤就OK了
补充:软件开发 , Vc ,