mac-notification-sys 0.2.0

Thin wrapper around macOS Notifications.
extern crate cc;

fn main() {
    if cfg!(target_os = "macos") {
        cc::Build::new()
            .file("objc/notify.m")
            .flag("-fmodules")
            .warnings(false)
            .compile("notify");
    }
}