can't start .exe file

I made a program in MS Visual Studio 2010 C++ and built it without problem.
I can run the .exe file in the local computer, but I can't run it in other computers.
The Runtime Library in Property is Multi-thread Debug DLL (/MDd).

What else should I do to resolve this problem?
The simple answer: change that setting to "Multi-thread Debug".
I have four options:
Multi-threaded (/MT)
Multi-threaded Debug (/MTd)
Multi-threaded DLL (/MD)
Multi-threaded Debug DLL (/MDd)

I changed the setting to Multi-threaded Debug (/MTd), but I have below error message:

Error 1 error D8016: '/clr:pure' and '/MTd' command-line options are incompatible
/clr:pure
That's not a C++ program. Sorry, can't help you there.
Topic archived. No new replies allowed.