tools/drawMapTest/main.cpp
author Xeli
Sun, 20 May 2012 17:17:21 +0200
changeset 7099 c0e403f618aa
parent 4425 2314bb0c433d
permissions -rw-r--r--
remove the need to qt and co when using cmake with -DANDROID=1

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

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