CMake:
* Set a registry (uninstall) path without version number for easier Xfire detection (needs testing)
* Added Lua to INSTALL
* Set README's line endings to native
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}