tools/drawMapTest/main.cpp
author koda
Wed, 20 Feb 2013 02:21:14 +0100
branchwebgl
changeset 8448 14f736ca7eb3
parent 4425 2314bb0c433d
permissions -rw-r--r--
update FindGLEW to use the same variables as in later CMake files and make sure to include its headers before compiling c stuff

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

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