changing build files without testing the change is fun, isn't it? especially for trivial things that would take less than 10 seconds to test :p
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}