tools/drawMapTest/main.cpp
author koda
Wed, 12 Jun 2013 19:27:17 +0200
changeset 9216 29372f16ddce
parent 4425 2314bb0c433d
permissions -rw-r--r--
explicitly set the origin linker flag so that $ORIGIN is used correctly

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

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