You've already forked idSaveDataResigner-GUI
mirror of
https://github.com/denuvosanctuary/idSaveDataResigner-GUI.git
synced 2026-04-29 15:46:54 -07:00
10 lines
173 B
Rust
10 lines
173 B
Rust
#[cfg(windows)]
|
|
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {} |