Quote Originally Posted by tbscope View Post
Please post your code and the complete error.
The line you posted only states that there is an error in main.o, but not what the error is.
Qt Code:
  1. #include <QApplication>
  2. #include <QLabel>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication app(argc, argv);
  7. QLabel *label = new QLabel("Hello Qt!");
  8. label->show();
  9. return app.exec();
  10. }
To copy to clipboard, switch view to plain text mode