mirror of
https://github.com/rfvgyhn/min-ed-launcher.git
synced 2026-02-04 12:45:45 +00:00
9 lines
161 B
Rust
9 lines
161 B
Rust
extern crate winres;
|
|
|
|
fn main() {
|
|
if cfg!(target_os = "windows") {
|
|
let res = winres::WindowsResource::new();
|
|
res.compile().unwrap();
|
|
}
|
|
}
|