tools/drawMapTest/main.cpp
author unc0rr
Sat, 14 Dec 2013 21:16:20 +0400
branchsdl2transition
changeset 9711 7d0329f37181
parent 4425 2314bb0c433d
permissions -rw-r--r--
To prevent that weird crash, you need to initialize SDL before Qt

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

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