2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-03 15:40:19 +00:00
Alfis/build.rs

9 lines
204 B
Rust

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