I'm trying to compile a Qt project of mine written years ago but it froze on startup and despite using:

Qt Code:
  1. CONFIG += force_debug_info
To copy to clipboard, switch view to plain text mode 

The debugger console is empty:

wFU1T.jpg

This is the flags of my .pro file:

Qt Code:
  1. QT += core gui
  2.  
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets webkitwidgets network
  4.  
  5. CONFIG += c++11
  6. CONFIG += force_debug_info
  7.  
  8. TARGET = myApp
  9. TEMPLATE = app
To copy to clipboard, switch view to plain text mode 

My plataform is Windows 10/Intel 32-bit machine. What am I missing?