glfw-sys 3.2.2

An Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events
Documentation
extern crate cmake;
use cmake::Config;

fn main() {
    let dst = Config::new(".")
        .define("GLFW_BUILD_EXAMPLES", "OFF")
        .define("GLFW_BUILD_TESTS", "OFF")
        .define("GLFW_BUILD_DOCS", "OFF")
        .build();
    println!("cargo:rustc-link-search=native={}", dst.join("lib").display());
    println!("cargo:rustc-link-lib=dylib=glfw3");
}