tools/templates/main.cpp
author koda
Mon, 07 May 2012 14:53:08 +0200
changeset 7031 d5ea24399a48
parent 359 59fbfc65fbda
permissions -rw-r--r--
when Lua is not found, fallback to compiling the one that comes bundled in our sources

#include <QApplication>

#include "mainform.h"

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