In which directory should I store the .obj models in Visual Studio 2010?
I am using the OpenGL Mathematics (GLM) library to use them in OpenGL, and when I try to load the object it shows
Error11error LNK2019: unresolved external symbol _glmReadOBJ referenced in function _SDL_main
Your question seems to have no relation to your actual problem. You’re not getting this error when you “try to load the object”; this is a linker error. You get this when you try to compile and link your code. It has nothing to do with where the “.obj” files are stored, because you haven’t created a functioning executable yet.
The linker error is telling you that you probably did not link to the GL Mesh library correctly.