mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
9 lines
212 B
Rust
9 lines
212 B
Rust
fn main() {
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("assets/graphite-icon-color.ico");
|
|
res.compile().expect("Failed to compile Windows resources");
|
|
}
|
|
}
|