Editing the <project name>.pro and adding the CONFIG += debug made KDevelop 3.4.0 running on KDE 3.5.6 crash. However if I edit the already existing CONFIG line:
CONFIG += warn_on \
qt \
thread
to read:
CONFIG += warn_on \
qt \
thread \
debug
Then editing the src\src.pro file and adding the line:
CONFIG += debug
Debugging works. I found though that using the same technique for the src.pro file as I did the <project name>.pro file also made KDevelop crash...
Also I noticed something funky while debugging my sample testing project and that is that after stepping over an instruction just before a call to qDebug() my debugger to ran off without me

. I'll have to find out why it did that but adding another break point on that line made it step properly into the loop after words and onto the end.
I love KDevelop and honestly I was surprised to NOT see a build configuration dialog for a qmake project

. Guess I'll have to learn the syntax of a .pro file. Oh well, such is life and you can't complain seeing as KDevelop is as good as it is

.