mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 17:55:38 +01:00
13 lines
250 B
Rust
13 lines
250 B
Rust
#[cfg(windows)]
|
|
extern crate winres;
|
|
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("static/favicon.ico");
|
|
res.compile().expect("Failed to generate metadata");
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {}
|