gl_loader 0.1.2

Simple OpenGL function pointer loader based on Glad.
Documentation
1
2
3
4
5
6
7
8
extern crate cc;

fn main() {
    cc::Build::new()
        .file("src/glad.c")
        .static_flag(true)
        .compile("glad");
}