mirror of
https://github.com/Revertron/Alfis
synced 2024-11-03 15:40:19 +00:00
9 lines
204 B
Rust
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();
|
|
}
|
|
} |