mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 12:23:46 +03:00
d64b785290
dependabot keeps trying and failing because lots of things changed. Let's try and get ahead of it...
15 lines
377 B
Rust
15 lines
377 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::*,
|
|
Windows::Win32::SystemServices::E_POINTER,
|
|
);
|
|
}
|
|
}
|