mirror of
https://github.com/wez/wezterm.git
synced 2024-12-18 10:52:16 +03:00
90e8e6e105
refs: #489
14 lines
322 B
Rust
14 lines
322 B
Rust
fn main() {
|
|
if cfg!(target_os = "macos") {
|
|
println!("cargo:rustc-link-lib=framework=UserNotifications");
|
|
}
|
|
#[cfg(windows)]
|
|
{
|
|
windows::build!(
|
|
windows::data::xml::dom::XmlDocument,
|
|
windows::foundation::*,
|
|
windows::ui::notifications::*,
|
|
);
|
|
}
|
|
}
|