tools/drawMapTest/main.cpp
author koda
Tue, 02 Jun 2015 01:58:10 +0100
changeset 10973 36b84888934c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Move OSX SDL library configuration from SDLh to proper CMakeLists

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

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