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