I have been using Qt Creator to develop some Qt apps recently with no problems. This week I started to use Qt Creator to work on an Open Scene Graph application. I have all of the source (.cpp and .h) files for Open Scene Graph and used those to build the libraries.
I then created a new project and linked those libraries into my project through the .pro file. My application works and runs, I can debug but not step into the code from the Open Scene Graph libraries.
How can I set up Qt Creator to step through these source files or even break at breakpoints within the source code of these libraries?
In Tools -> Options -> Debugger, there is Source Paths Mapping which may be what I'm after but I'm not sure.
Thanks.