2021-01-17 23:18:35 +00:00
|
|
|
extern crate winres;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if cfg!(target_os = "windows") {
|
|
|
|
let mut res = winres::WindowsResource::new();
|
2021-04-05 23:20:20 +00:00
|
|
|
res.set_icon("img/logo/alfis.ico");
|
2021-01-17 23:18:35 +00:00
|
|
|
res.compile().unwrap();
|
|
|
|
}
|
|
|
|
}
|