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