This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
rustboyadvance-ng/src/build.rs
Michel Heily 84004ddb5c windows: Add file icon to build targets
Former-commit-id: 2dae2e7818d86ddf9470afafd0404f0e7e021718
2020-02-12 22:18:58 +02:00

10 lines
172 B
Rust

#[cfg(windows)]
fn main() {
let mut res = winres::WindowsResource::new();
res.set_icon("assets/icon.ico");
res.compile().unwrap();
}
#[cfg(unix)]
fn main() {}