I have a simple Qt application in Visual Studio:
int main(int argc, char* argv[]){
QApplication app(argc, argv);
Myclass* c = new MyClass;
c->show();
int ret = app.exec();
return ret;
}
but my application does not return when I close the windows (in debug mode, app.exec() does not return). The process and sub process Qt Qtwebengineprocessd remains in execution.
How can I control/debug in Visual Studio why/where my application is blocked?