miniquad 0.3.13

Cross-platform window context and rendering library.
Documentation
1
2
3
4
5
6
7
8
9
use std::env;

fn main() {
    let target = env::var("TARGET").unwrap_or_else(|e| panic!("{}", e));

    if target.contains("darwin") {
        println!("cargo:rustc-link-lib=framework=OpenGL");
    }
}