I'm going to develop an OpenGL project using Microsoft Visual Studio 2013, developing with C++.
I'm intending to use freeglut for the project as it would probably give me more freedom to compute things such as reading a 3D model, displaying the mesh, and performing computations on the 3D model later. Do correct me if I'm wrong here...
I'm assuming that copying the required files for freeglut into my project directory would enable me to work on it using different machines with just linking it once in the Visual Studio project?
I'm still setting up the project at this point and I do have a lot of doubts with regards to getting started on OpenGL even after reading from various sources online.
I have read in some places that it is not advisable to include the freeglut or glut files into the project directory, but instead, create a new directory elsewhere and link to it. I'm at a loss as to what is the better approach or if there is any difference at all.