mirror of
https://github.com/a-mayb3/godo-launcher.git
synced 2026-03-21 18:05:39 +01:00
9 lines
No EOL
202 B
Rust
9 lines
No EOL
202 B
Rust
extern crate winres;
|
|
|
|
fn main() {
|
|
if cfg!(target_os = "windows") {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("app_icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
} |