What file need to open exe on another computer mvcp100d
I created a small application, copied the exe from debug, copied textures, fonts to the same folder as my exe. On my computer with visual studio installed, I have no problem running this, but on another computer, I cannot run this application, because from mvcp100d.dll (the system does not see this). Is it possible to run this exe in any other cumpter?
+3
source to share
2 answers
To prepare your computer to test a debug version of an application built with Visual C ++, you need to deploy the debug versions of the Visual C ++ library libraries that the application depends on. -from http://msdn.microsoft.com/en-us/library/aa985618.aspx
NOTE. Debug versions of the MSVC runtime are not redistributable.
+6
source to share