mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-07 23:23:34 +00:00
13 lines
265 B
Rust
13 lines
265 B
Rust
use anyhow::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
#[cfg(windows)]
|
|
{
|
|
let mut res = tauri_winres::WindowsResource::new();
|
|
res.set_icon("assets/icon.ico");
|
|
res.set_language(0x0409); // US English
|
|
res.compile()?;
|
|
}
|
|
Ok(())
|
|
}
|