Hello,
I usually run Qt in Windows.
I created a Qt Console Application in Ubunti with the following code:

Qt Code:
  1. #include <QtCore/QCoreApplication>
  2. #include <QtDebug>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QCoreApplication a(argc, argv);
  7. qDebug()<<"Hello World\n";
  8.  
  9. return a.exec();
  10. }
To copy to clipboard, switch view to plain text mode 

unfortunately it displays nothing at all, like it does in Windows.
There is a config += console in the project file.
What did I do wrong?