paimon/build.rs
2023-11-18 22:51:55 +01:00

8 lines
177 B
Rust

fn main() {
if cfg!(target_os = "windows") {
let mut res = winres::WindowsResource::new();
res.set_icon("icon.ico");
res.compile().unwrap();
}
}