mac-notification-sys 0.1.2

Thin wrapper around macOS Notifications.
extern crate gcc;

fn main() {
    if cfg!(target_os = "macos") {
        gcc::Config::new().file("objc/notify.m").flag("-fmodules").compile("libnotify.a");
    }
}