This repository has been archived on 2025-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
extern crate winres;
|
|
|
|
fn main() {
|
|
if cfg!(target_os = "windows") {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("./src/view/resources/icon.ico"); // Replace this with the filename of your .ico file.
|
|
res.compile().unwrap();
|
|
}
|
|
} |