GLM is just a header-only library, so you just need to include it in your project.
Have you actually put the GLM folder in your include path? Folder "glm-0.9.4.4" does not match "glm". Basically, make sure that the path you are trying to include is actually aligned.
If you include something in a local (project) directory, use quotation marks instead of angle brackets to include something. #include "glm/glm.hpp" . However, if you told VC to look in the directory where you put GLM, the brackets should work. As a rule, brackets look in your inclusion path, and quotes look at your local path. See this question for a better explanation.
By default, the default path should look something like C:/.../Microsoft Visual Studio 12/VC/include . You can drop it there so that it can be available for all your projects if you do not want to rewrite it in every new project that you do. If you do not want to do this, find the project directory and put the "glm" folder where all your header files are located, and #include with quotes instead of brackets.
Have you tried to track this yourself? Find where stdio.h lives, or where the folder named "include" is located.
source share