tools/drawMapTest/main.cpp
author koda
Sat, 23 Apr 2016 13:48:30 -0400
changeset 11678 b76b7372a2a6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add missing functions to fully disable lua at compile time

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

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