tools/drawMapTest/main.cpp
author koda
Wed, 20 Feb 2013 01:55:23 +0100
changeset 8518 24d2bdc6deff
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix compiling on osx when you have multiple linkers installed

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

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