tools/drawMapTest/main.cpp
author koda
Wed, 23 May 2012 01:53:25 +0200 (2012-05-22)
changeset 7113 d54e666c395d
parent 4425 2314bb0c433d
permissions -rw-r--r--
add GHC and GHFLAGS from cmake too
#include <QtGui/QApplication>
#include "mainwindow.h"

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