mirror of
https://github.com/yuhkix/wuwa-downloader.git
synced 2025-06-06 17:53:44 +00:00
7 lines
No EOL
207 B
Rust
7 lines
No EOL
207 B
Rust
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
} |