heim-common 0.0.11

Common stuff shared across heim project crates
Documentation
1
2
3
4
5
6
7
use std::env;

fn main() {
    if let Ok("macos") = env::var("CARGO_CFG_TARGET_OS").as_ref().map(|x| &**x) {
        println!("cargo:rustc-link-lib=framework=IOKit");
    }
}