1

我正在尝试学习 OpenGL 并使用 openglbook.com 作为我的参考。我正在尝试让 GLEW 和 freeglut 在我的计算机上工作,所以我开始通过他为让他们在这里与 Visual Studio 一起工作而制定的步骤开始:http: //openglbook.com/setting-up -opengl-glew-and-freeglut-in-visual-c。我正在认真对待它,唯一的区别是我使用的是 Visual Studio 2010 Ultimate。

当我尝试使用 GLEW 时出现此问题;发生这种情况时,我收到链接器错误。以下是错误消息的全文:

1>------ Build started: Project: gl1, Configuration: Debug Win32 ------
1>Build started 2012/07/28 20:12:19.
1>InitializeBuildStatus:
1>  Touching "Debug\gl1.unsuccessfulbuild".
1>ClCompile:
1>  All outputs are up-to-date.
1>ManifestResourceCompile:
1>  All outputs are up-to-date.
1>main.obj : error LNK2019: unresolved external symbol __imp__glewGetErrorString@4 referenced in function _Initialize
1>main.obj : error LNK2019: unresolved external symbol __imp__glewInit@0 referenced in function _Initialize
1>c:\users\magpie\documents\visual studio 2010\Projects\gl1\Debug\gl1.exe : fatal error LNK1120: 2 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:00.84
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

有什么帮助吗?当我第一次遇到这个错误时,我尝试从源代码编译 GLEW,但这也没有解决它(假设我做得正确)。

4

1 回答 1

2

这个错误意味着编译器找不到头文件中描述的方法的实现。要使用您的应用程序静态编译 GLEW,请将 glew32.lib 文件添加到库搜索目录(项目属性 -> VC 搜索目录)。

于 2012-07-28T18:25:53.577 回答