mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
* Add icon for windows binary * Add comment to FileDescription FileDescription is handled as the Program name by Windows!
9 lines
245 B
Rust
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();
|
|
}
|
|
}
|