how to config qt pdb file
Answered
After installing qt, how to configure the qt pdb file in clion, so that you can debug into the qt source code?
At present, I can successfully compile and run Qt-based programs, but when debugging, I cannot display qt source code
Please sign in to leave a comment.
Hi!
Possibly it's a bit tricky way. However, our developer was able to step into qt sources by building Qt from source as described in https://doc.qt.io/qt-6/windows-building.html with
--config Debug
in CMake and by copying necessary pdbs (Qt6Cored.pdb, Qt6Widgetsd.pdb) into the CMake build directory of the project.doesn't work!Is there any specific method? Please