I\'ve built a c++ application with Visual Studio 2012. I\'ve tried to get it to run on another machine without VS2012 installed but it will not run. It keeps looking for msv
Make sure that not only the solution you're making is built using Release mode configurations, but all dependencies are also using the non-debug DLLs. As you've written you are using imported libraries (freeglut), so check those too. Since freeglut is open-source you might want to built it from scratch too (using release mode), instead of using a pre-built DLL.