wa 0.1.7

Cross-platform window assistant made primarily for Rio terminal
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=MetalKit");
    }
}