view src/gtkglextmm-test.cpp @ 1228:f485e93f9b65

bugfix for gtksourceview: specify location of glib-genmarshal and glib-mkenums
author Tony Theodore <tonyt@logyst.com>
date Thu, 30 Sep 2010 20:30:50 +1000
parents 6f81712a503b
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <gtkmm/main.h>
#include <gtkmm/gl/init.h>

int main(int argc, char *argv[])
{
    Gtk::Main g(argc, argv);
    Gtk::GL::init(argc, argv);
    g.run();
    return 0;
}