how do i setup the GLM Library in visual studio 2012?
first i tried extract the glm librar directory to my VS 2012 project directory (the directory containing the glm library is named glm-0.9.4.4). then i tried to add glm-0.9.4.4 to
PROJECT -> properties -> VC++ directories -> Include Directories
and then when i tried to use the include #include <glm/glm.hpp>
in my code i got the following error:
fatal error C1083: Cannot open include file: 'glm/glm.hpp': No such file or directory
how do i set up the GLM library correctly to work in my code?