我一直在关注learnopengl.com上的教程,但当我尝试使用GLFW编译程序时,我收到此错误:
1>LINK : fatal error LNK1104: cannot open file 'glfw3.lib'
这是我到目前为止的代码:
#define GLEW_STATIC
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <iostream>
int main() {
std::cout << "HelloWorld" << std::endl;
return 0;
}
我知道我有&#34;包含目录&#34;正确和&#34;附加依赖&#34;,因为a)我仔细检查了b)它没有任何问题glew
答案 0 :(得分:1)
您还需要将“图书馆目录”指向glfw3.lib
所在的位置。