Files
Pumpkin/pumpkin/build.rs
Commandcracker 8767e66777 Add icon to windows binary (#257)
* Add icon for windows binary

* Add comment to FileDescription

FileDescription is handled as the Program name by Windows!
2024-11-12 19:51:25 +01:00

9 lines
245 B
Rust

fn main() {
if cfg!(target_os = "windows") {
let mut res = winresource::WindowsResource::new();
res.set_icon("../assets/icon.ico");
res.set_language(0x0009); // English
res.compile().unwrap();
}
}