tools/drawMapTest/main.cpp
author koda
Thu, 21 Apr 2016 11:54:21 -0400
changeset 11663 f87ed83568c8
parent 4425 2314bb0c433d
permissions -rw-r--r--
Import the Emscripted toolchain configuration

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

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