tools/drawMapTest/main.cpp
author sheepluva
Sat, 29 Apr 2017 23:45:14 +0200
changeset 12383 e3d9abcc427a
parent 4425 2314bb0c433d
permissions -rw-r--r--
cmake: Fix SDL2 header version detection

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

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