Release Application looking for MSVCR110d.dll

前端 未结 5 1864
忘掉有多难
忘掉有多难 2021-01-04 14:08

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

5条回答
  •  孤街浪徒
    2021-01-04 14:18

    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.

提交回复
热议问题