tools/hwmap2txt/hwmapconverter/main.cpp
author frd
Tue, 03 May 2016 01:07:26 -0400
changeset 11796 50a462b9454a
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add pre/post js stub files and expand the emscripten options

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

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

    return a.exec();
}