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

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

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