tools/drawMapTest/main.cpp
author sheepluva <sheepluva@users.noreply.github.com>
Mon, 05 Jan 2015 14:37:08 +0100
changeset 10770 8060cb5c2fa6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merge pull request #27 from LocutusOfBorg/fix-build2 Fix arm* build failures < LocutusOfBorg1> sheepluva, the problem is fpc, so the workaround might be necessary even if they patch it :( http://bugs.freepascal.org/view.php?id=27222

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

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