mirror of
https://github.com/pumpbin/pumpbin
synced 2026-03-14 23:04:30 -07:00
9 lines
190 B
Rust
9 lines
190 B
Rust
fn main() {
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
let mut res = winresource::WindowsResource::new();
|
|
res.set_icon("logo/icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
}
|