tools/drawMapTest/main.cpp
author Xeli
Sun, 20 May 2012 21:09:13 +0200
changeset 7100 8a2b23efed11
parent 4425 2314bb0c433d
permissions -rw-r--r--
android: added an unsigned target to the makefile, to help automate signing

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

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