tools/drawMapTest/main.cpp
author nemo
Wed, 13 Jun 2012 11:18:30 -0400
changeset 7233 225179f64fd8
parent 4425 2314bb0c433d
permissions -rw-r--r--
LUA_FOUND should surely be set only if the system lua was found.

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

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