mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
10 lines
201 B
Rust
10 lines
201 B
Rust
extern crate winres;
|
|
|
|
fn main() {
|
|
if cfg!(target_os = "windows") {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("./icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
}
|