2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-15 06:12:52 +00:00
Alfis/build.rs
2021-05-02 16:02:14 +02:00

9 lines
208 B
Rust

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