Files
objdiff/objdiff-gui/build.rs
T

13 lines
265 B
Rust
Raw Normal View History

2022-12-06 17:53:32 -05:00
use anyhow::Result;
2022-12-10 10:34:03 -05:00
fn main() -> Result<()> {
#[cfg(windows)]
{
2024-09-10 23:22:09 -06:00
let mut res = tauri_winres::WindowsResource::new();
res.set_icon("assets/icon.ico");
res.set_language(0x0409); // US English
res.compile()?;
2022-12-10 10:34:03 -05:00
}
2024-09-10 23:22:09 -06:00
Ok(())
2022-12-10 10:34:03 -05:00
}