view src/gtkglextmm-test.cpp @ 6067:1a4cd1dde869 release

of_communications: update to v1.2.4 * src/of-communications-1-catop.patch: removed file * src/of-communications-2-error_state.patch: removed file * dist-files.mk: removed ref to removed filed * dist-files.mk: update version, checksum (grafted from 4d6eba975aa4278d559a31d28e88fa7333e11ff2)
author John Donoghue <john.donoghue@ieee.org>
date Mon, 24 Jan 2022 08:30:50 -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;
}