mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 23:38:06 +08:00
* remove branded files * use branding repo * include favicons * nixpkg fixup * win fix ico path * fix fmt * skip licensenses for dev builds * review fixup * test * test * ci test * ci test * ci test * fix ci
9 lines
222 B
Rust
9 lines
222 B
Rust
fn main() {
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("../../../branding/app-icons/graphite.ico");
|
|
res.compile().expect("Failed to compile Windows resources");
|
|
}
|
|
}
|