I am creating a multi-platform Qt application for which I would want a crash reporting system to generate a crash report whenever there's a crash on the user's computer. At a later point, I should be able to view the stack trace with all the debug info from the crash report. I have looked at google-breakpad.
But to use that it seems I need to shift to MSVC for windows. Right now I am using MinGW on windows and it would take me significant time & effort to get all the different libraries compiled with MSVC. Is there any way I can use MinGW and still be able to use google-breakpad? Or is there some other alternative which can work multiplatform and support mingw on windows?