c++ - How do I include GLFW 3.x, without errors? -


i have downloaded glfw 3.1.1(glfw-3.1.1.zip) computer.

i want execute code:

#include <glfw/glfw3.h>  int main() {     return 0; } 

in other words, want able include glfw in code, later on can open context (for opengl use).

but error message when running code:

error   1   error c1083: cannot open include file: 'glfw/glfw3.h': no such file or directory    f:\opengl_coding\video_tut_test\video_tut_test\main.cpp 1   1   video_tut_test 

i know there step haven't done, don't understand step is. linking? see being talked lot in tutorials, never explain properly.

how remove error , make possible execute above code?

i use visual studio express 2013, on windows 8 machine. come java background.


Popular posts from this blog