view src/gtkglextmm-test.cpp @ 3439:c9ade6d47f3a

Provide new variable to check whether we are doing a Windows build. * Makefile.in (MXE_WINDOWS_BUILD): New variable. * src/libgmop.mk: Use it.
author John W. Eaton <jwe@octave.org>
date Wed, 22 Jan 2014 01:09:48 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See 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;
}