hello!
i'm developing an app using Qt for my company. in order to be able to get minidumps when the app crashes during testing on my colleagues' machines, i switched from mingw32 to msvc (visual studio 2008).
if i'm not completely mistaken, the app needs to be compiled in debug mode in order for the minidump to make sense. but unfortunately i can't start the app on another machine if it's compiled in debug mode...
the errors are:
This application has failed to start because the configuration is incorrect. Reinstalling the application may fix this problem.
and after shipping with the msvcrt and mfc dlls from the redist/debugNoRedist-folders including manifests in the bin-dir:
The application could not be initialized properly(0xc0150002)
i compiled the app with
Qt Code:
  1. CONFIG+=embed_manifest_exe
  2. DEFINES += _BIND_TO_CURRENT_VCLIBS_VERSION
To copy to clipboard, switch view to plain text mode 

checking the .exe with depends.exe, i see that there are only two dlls missings, which are loaded on-demand and they are missing on my machine, as well, so this shouldn't be an issue.

any hints?

thanks,
thomas