mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-07 15:13:47 +00:00
- Add application icon - Fixes for objects containing multiple sections with the same name
11 lines
220 B
Rust
11 lines
220 B
Rust
use anyhow::Result;
|
|
use vergen::{vergen, Config};
|
|
|
|
fn main() -> Result<()> {
|
|
#[cfg(windows)]
|
|
{
|
|
winres::WindowsResource::new().set_icon("assets/icon.ico").compile()?;
|
|
}
|
|
vergen(Config::default())
|
|
}
|