我试图构建一段非常简单的代码无济于事:
#include <GL/glew.h>
#include <GLFW/glfw3.h>
int main(void)
{
if (!glfwInit())
return -1;
}
请注意,我已经(静态地)链接了glew,glfw和opengl32库。我还在项目属性中包含了正确的include和lib目录。在构建我得到以下内容:
**Error 1 error LNK2001: unresolved external symbol __dtoul3 C:\OpenGLWinconsole\glfw3.lib(win32_time.obj) OpenGLWinconsole**
**Error 2 error LNK2001: unresolved external symbol __ultod3 C:\OpenGLWinconsole\glfw3.lib(win32_time.obj) OpenGLWinconsole**
**Error 3 error LNK1120: 2 unresolved externals C:\OpenGLWinconsole\Release\OpenGLWinconsole.exe OpenGLWinconsole**