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

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}