tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Wed, 27 Apr 2016 01:12:37 -0400
changeset 11741 72f0c8a73080
parent 11015 7a905f0070ce
permissions -rw-r--r--
Set install dir for emscripten While not required, should help compatibility with older cmake versions.

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

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

    return a.exec();
}