mirror of
https://github.com/Tim-Paik/neutauri.git
synced 2024-10-12 23:29:41 +00:00
13 lines
234 B
Rust
13 lines
234 B
Rust
#[cfg(windows)]
|
|
extern crate winres;
|
|
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("../neutauri_runtime/wry.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
fn main() {}
|