mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 14:55:41 +01:00
14 lines
222 B
Rust
14 lines
222 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().unwrap();
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {
|
|
}
|