mirror of https://github.com/Tim-Paik/neutauri.git
13 lines
202 B
Rust
13 lines
202 B
Rust
|
#[cfg(windows)]
|
||
|
extern crate winres;
|
||
|
|
||
|
#[cfg(windows)]
|
||
|
fn main() {
|
||
|
let mut res = winres::WindowsResource::new();
|
||
|
res.set_icon("wry.ico");
|
||
|
res.compile().unwrap();
|
||
|
}
|
||
|
|
||
|
#[cfg(unix)]
|
||
|
fn main() {}
|