This repository has been archived on 2025-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AIT/build.rs

9 lines
272 B
Rust
Raw Normal View History

2024-08-19 03:14:39 -07:00
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();
}
}