tools/drawMapTest/main.cpp
author koda
Tue, 03 May 2016 00:51:33 -0400
changeset 11794 64bbe89e59d6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Compile uMatrix to c too when GL2 is requested

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

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