how to setup the GLM library in visual studio 2012

I succeeded in solving the problem. to add the GLM library to the include path, I did the following steps:

  1. Extracted the glm code directory to my project directory (the name of the directory in the archaive downloaded from the internet is glm-0.9.4.4). for example if the project is in C:\projects\myProject then extracted the glm code to this path (C:\projects\myProject).
  2. Than I added the full path C:\projects\myProject\glm-0.9.4.4 of the glm directory to:

    => right click on project in the solution viewer => from the drop down menu choose properties => C\C++ => General => Additional Include Directories.

  3. Add C:\projects\myProject\glm-0.9.4.4 in the edit box of Additional Include Directories.

Another option if you don't want to use full path for the glm library (or any other library you want to include in you project in general), is to use the path .\glm-0.9.4.4 instead of the full path (this will work only if you extracted the glm library to the project directory!)


GLM is a header-only library, so it's just a matter of getting it to include into your project nicely.

  1. Did you actually put the GLM folder in your include path? The folder "glm-0.9.4.4" is not the same as "glm". Basically make sure the path you're trying to include actually lines up.

  2. If you're including something in a local (project) directory, use quotes instead of angle brackets to include something. #include "glm/glm.hpp". However if you've told VC to look in the directory where you put GLM, brackets should work. Generally, brackets look in your include path and quotes look in your local path. See this question for a better explanation.

Your default include path should look something like C:/.../Microsoft Visual Studio 12/VC/include. You can dump it there so it can be accessible to all of your projects if you don't feel like re-copying it to each new project you make. If you don't want to do that, find your project directory and place the "glm" folder where all of your other header files are and #include it with quotes instead of brackets.

Have you tried snooping around for this on your own? Search for where stdio.h lives or where a folder called "include" is.