11 lines
274 B
Rust
11 lines
274 B
Rust
fn main() {
|
|
#[cfg(windows)]
|
|
{
|
|
if let Err(e) = winres::WindowsResource::new()
|
|
.set_icon("assets/logo.ico")
|
|
.compile()
|
|
{
|
|
eprintln!("warning: не удалось встроить иконку: {e}");
|
|
}
|
|
}
|
|
} |