Initial commit

This commit is contained in:
Joey Pillunat 2025-11-03 20:33:06 +01:00
commit a47ba511c9
12 changed files with 2712 additions and 0 deletions

18
build.rs Normal file
View file

@ -0,0 +1,18 @@
fn main() {
let mut res = winres::WindowsResource::new();
let version = env!("CARGO_PKG_VERSION");
res.set_icon("favicon.ico");
res.set("FileDescription", "OH5 Drucker Installer");
res.set("ProductName", "OH5 Drucker-Tool");
res.set("CompanyName", "Office Hoch 5 GmbH");
res.set("LegalCopyright", "Copyright © 2025 Office Hoch 5 GmbH");
res.set("OriginalFilename", "OH5 Drucker Installer.exe");
// Version aus Cargo.toml ziehen 👇
res.set("FileVersion", version);
res.set("ProductVersion", version);
res.compile().unwrap();
}