8 lines
257 B
Rust
8 lines
257 B
Rust
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("windows") {
|
|
let mut res = winresource::WindowsResource::new();
|
|
res.set_icon("assets/tray.ico");
|
|
res.compile().expect("failed to embed icon resource");
|
|
}
|
|
}
|