I\'m trying to compile using MTd in Visual Studio 2010 instead of MDd (so that the dll\'s are packaged in and i won\'t need to distribute them with my exe), but I keep getti
You are linking your program statically and linking against libcmt, but at the same time, linking in code from the Qt DLLs, which are, as the name already says, dynamically linked against msvcrt.lib.
You will need to either link dynamically or recompile Qt from source as static, which isn't hard, but time-consuming.