Files
Adam Ierymenko 7b92a24d50 First commit.
2021-05-28 12:06:43 -04:00

8 lines
224 B
Rust

#[allow(unused_assignments)]
#[allow(unused_mut)]
fn main() {
let d = env!("CARGO_MANIFEST_DIR");
println!("cargo:rustc-link-search=native={}/tray", d);
println!("cargo:rustc-link-lib=static=zt_desktop_tray");
}