tools/drawMapTest/main.cpp
author koda
Thu, 13 Jun 2013 22:50:18 +0200
changeset 9225 d8d929f92633
parent 4425 2314bb0c433d
permissions -rw-r--r--
use target name instead of the resulting library, use more macros around

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

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