mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
10 lines
426 B
Rust
Executable file
10 lines
426 B
Rust
Executable file
// This [build.rs] is for setting Windows icons.
|
|
// The icon in [File Explorer] gets set here.
|
|
// The icon in the taskbar and top of the App window gets
|
|
// set in [src/main.rs, src/constants.rs] at runtime with
|
|
// pre-compiled bytes using [include_bytes!()] on the images in [images/].
|
|
fn main() -> std::io::Result<()> {
|
|
#[cfg(windows)]
|
|
winres::WindowsResource::new().set_icon("images/icons/icon.ico").compile()?;
|
|
Ok(())
|
|
}
|