tauri-hotkey-sys 0.1.2

Native bindings for the Tauri hotkey API
Documentation
fn main() {
  #[cfg(target_os = "macos")]
  if std::env::var("TARGET").unwrap().contains("-apple") {
    println!("cargo:rustc-link-lib=framework=Carbon");
    cc::Build::new()
      .file("src/carbon_hotkey_binding.c")
      .compile("carbon_hotkey_binding.a");
  }
}