Feat: trying to improve bundling and compilation

This commit is contained in:
2026-02-06 00:46:40 +01:00
parent f1af4d2cdb
commit 9a769518f9
5 changed files with 17 additions and 2 deletions

11
build.rs Normal file
View File

@@ -0,0 +1,11 @@
fn main() {
#[cfg(windows)]
{
let mut res = winres::WindowsResource::new();
res.set_icon("assets/Cagire.ico")
.set("ProductName", "Cagire")
.set("FileDescription", "Forth-based music sequencer")
.set("LegalCopyright", "Copyright (c) 2025 Raphaël Forment");
res.compile().expect("Failed to compile Windows resources");
}
}