glClear is an OpenGL function, which on windows requires you to link to opengl32.lib by adding it to your Linker->Input->Additional Dependencies. It’s a system library so you don’t need to add any include directories.
For GLFW you should ONLY link either glfw3.lib or glfw3dll.lib depending on whether you want the static or dynamic library, see GLFW: Building applications.