Download Source Code .
Build an application with , including all the necessary files (e.g. qmainwindow.h, qmainwindow.cpp, ...). Launch the app. Step into the necessary files during debugging .. I have not tried this path, but this should work.
You must also include all the files you need. For example, a QMainWindow is inferred from a QWidget . QWidget is derived from QObject . So you need to enable qwidget.cpp, qwidget.h for QWidget and qobject.cpp, qobject.h for QObject. Similarly, you should include all the necessary files that may be required .
What you actually do, instead of linking the Qt libraries (* .dll and * .lib) includes the necessary files directly. All this.
Remember the Qt-related libraries, you will not be able to enter files that are all embedded in libraries . Thus, including the necessary files will help you.
Hope this helps.
source share