tools/templates/main.cpp
author koda
Sat, 08 Dec 2012 15:38:16 +0100
branch0.9.18
changeset 7962 713d9eff2ce3
parent 359 59fbfc65fbda
permissions -rw-r--r--
removing the optimisation that caused (most likely) the lua crashes on osx

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}