This is driving me mad, I want to statically link to GLFW.lib, following section 4.2.1. of the readme.html file provided I have added glfw.lib and opengl32.lib to the additional
Make sure you have glfw.dll in folder with your .exe file. If this wont help, add another library glu32.lib.
I use to add libraries in code by adding this before main function. With this you see wich libraries you have linek without diging through options and menus.
#pragma comment(lib, "GLFW.lib")
#pragma comment(lib, "opengl32.lib")
#pragma comment(lib, "glu32.lib")