VS error C1083: 无法打开包括文件:“gl\glew.h”: No such file or directory\

来源:互联网 发布:天下3 mac 编辑:程序博客网 时间:2024/05/16 14:19
大家在使用#include <gl/glew.h>时经常会出现下面的错误: error C1083: 无法打开包括文件:“gl\glew.h”: No such file or directory\ 解决方法如下: 
1.下载glew-1.6.0-win64.zip 
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了

具体内容大家可以查看glew-1.6.0-win64\glew-1.6.0\doc\index.html

<iframe id="cproIframe_u1160947_4" width="760" height="90" src="http://pos.baidu.com/acom?adn=3&amp;at=231&amp;aurl=&amp;cad=1&amp;ccd=24&amp;cec=UTF-8&amp;cfv=17&amp;ch=0&amp;col=zh-CN&amp;conBW=0&amp;conOP=1&amp;cpa=1&amp;dai=4&amp;dis=0&amp;ltr=https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3D3J3FvbjUk_OcZ1na90DnF3dJu-XZFHOPVjAGclAgzEVVkYYBTWDTYlhqIAIrfZnjWRHaDiN_hgW9BFoUg2U2Kb689PZ2nkP0xvGrew90oR3%26wd%3D%26eqid%3Deadfadd700002c0a000000035572b15f%26ie%3Dutf-8&amp;ltu=http%3A%2F%2Fwww.cfanz.cn%2Findex.php%3Fc%3Darticle%26a%3Dread%26id%3D36387&amp;lu_161=6&amp;lunum=6&amp;n=92037085_cpr&amp;pcs=1349x599&amp;pis=10000x10000&amp;ps=966x225&amp;psr=1366x768&amp;pss=1349x977&amp;qn=15954e2fcdbdd33e&amp;rad=&amp;rsi0=760&amp;rsi1=90&amp;rsi5=4&amp;rss0=%23FFFFFF&amp;rss1=%23FFFFFF&amp;rss2=%230000ff&amp;rss3=%23444444&amp;rss4=%23008000&amp;rss5=&amp;rss6=%23e10900&amp;rss7=&amp;scale=&amp;skin=tabcloud_skin_3&amp;stid=5&amp;td_id=1160947&amp;titFF=%E5%AE%8B%E4%BD%93&amp;titFS=12&amp;titTA=left&amp;tn=text_default_760_90&amp;tpr=1433580135175&amp;ts=1&amp;version=2.0&amp;xuanting=0&amp;dtm=BAIDU_DUP2_SETJSONADSLOT&amp;dc=2&amp;di=u1160947&amp;ti=VS%20error%20C1083%3A%20%E6%97%A0%E6%B3%95%E6%89%93%E5%BC%80%E5%8C%85%E6%8B%AC%E6%96%87%E4%BB%B6%3A%E2%80%9Cgl%5Cglew.h%E2%80%9D%3A%20No%20such%20file%20or%20direct&amp;tt=1433580135095.876.910.911" align="center,center" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" allowtransparency="true" style="margin: 0px; padding: 0px;"></iframe>
0 0