mirror of
https://github.com/alterware/alterware-launcher.git
synced 2025-12-04 07:17:50 +00:00
7 lines
237 B
Rust
7 lines
237 B
Rust
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
|
|
let mut res = winresource::WindowsResource::new();
|
|
res.set_icon("res/icon.ico").set_language(0x0409);
|
|
res.compile().unwrap();
|
|
}
|
|
} |