Reputation: 175
I'm attempting to step into Qt Source code to understand a particular warning I'm receiving. A lot of questions come close to answering this, most particularly this one:
Stepping into Qt sources in Qt Creator (in Ubuntu Linux)
Unfortunately this answer is for Ubuntu, and I have been unable to find the equivalent repository items mentioned in the answer in dnf on Fedora 29.
The answers to this (Debug into Qt sources) question also seem relevant, except that:
No file is named configure in any qt-related directories (perhaps this answer was for Qt4?)
The method of including all source files is quite painful for a medium to large project.
Upvotes: 0
Views: 404
Reputation: 51840
Download the official Qt online installer and select and install the Qt version you want to your home directory. Also make sure to install the source code of that Qt version. This will also install the official binary release of Qt Creator.
Using the official installer should give you an environment where you can debug and step into Qt code. The official Creator binary will also be set up automatically to work with the official Qt binaries by adding the necessary kits.
Upvotes: 1