mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-13 18:10:42 +01:00
13 lines
194 B
Rust
13 lines
194 B
Rust
|
#[cfg(windows)]
|
||
|
use winres;
|
||
|
|
||
|
#[cfg(windows)]
|
||
|
fn main() {
|
||
|
let mut res = winres::WindowsResource::new();
|
||
|
res.set_icon("kalk.ico");
|
||
|
res.compile().unwrap();
|
||
|
}
|
||
|
|
||
|
#[cfg(unix)]
|
||
|
fn main() {}
|