refactor: pre-release build

This commit is contained in:
2024-08-19 03:14:39 -07:00
parent 229f525653
commit 27f9a8e10b
16 changed files with 201 additions and 5 deletions

9
build.rs Normal file
View File

@@ -0,0 +1,9 @@
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();
}
}