tools/drawMapTest/main.cpp
author sheepluva
Tue, 16 Apr 2013 19:53:52 +0200
branch0.9.19
changeset 8900 b77fd3c2eec5
parent 4425 2314bb0c433d
permissions -rw-r--r--
whoops, unbreak build. how come that cmake doesn't stop anymore on engine build error?

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

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