paimon/build.rs

8 lines
177 B
Rust
Raw Permalink Normal View History

2023-11-18 21:51:55 +00:00
fn main() {
if cfg!(target_os = "windows") {
let mut res = winres::WindowsResource::new();
res.set_icon("icon.ico");
res.compile().unwrap();
}
}