tools/drawMapTest/main.cpp
author sheepluva
Wed, 13 Aug 2014 15:16:33 +0200
changeset 10382 a5752075f897
parent 4425 2314bb0c433d
permissions -rw-r--r--
this should fix the cmake 3.0 issue. thanks to Spacey for reporting

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

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