Qt Creator debugger does not stop on breakpoints in non-Qt console applications? Is this a bug or a feature?

If I have this:


#include <QtCore/QCoreApplication>

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);

return a.exec();
}

Breakpoints work but if I remove the Qt stuff the debugger does not stop on the breakpoints anymore.