tools/drawMapTest/main.cpp
author Xeli
Tue, 05 Jul 2011 18:21:19 +0200
branchhedgeroid
changeset 5391 eb9b25dea4af
parent 4425 2314bb0c433d
permissions -rw-r--r--
Removed the "move" of the resources, it isn't needed for the android build anymore and if they get moved in the default repo it probably should go somewhere in /share

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

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