Initial commit
This commit is contained in:
commit
a47ba511c9
12 changed files with 2712 additions and 0 deletions
18
build.rs
Normal file
18
build.rs
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue