I just installed QT4 and i read this tutorial for a hello world program. When i compile it it say I do not have the QTCore4.dll file so the .exe file cannot run. I then looked in the QT folder and i found QTCore4.dll in the bin folder. Here is my code if it matters.
Qt Code:
  1. #include <QApplication>
  2. #include <QPushButton>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication app(argc,argv);
  7.  
  8. QPushButton test("I am testing my first GUI application");
  9. test.show();
  10.  
  11. return app.exec();
  12. }
To copy to clipboard, switch view to plain text mode 
I am also using the Code::Blocks IDE with the MinGW compiler. Thanks.