tools/templates/main.cpp
author koda
Wed, 20 Feb 2013 02:21:14 +0100
branchwebgl
changeset 8448 14f736ca7eb3
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}