gupax/build.rs

53 lines
1.5 KiB
Rust
Raw Normal View History

// 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/].
#[cfg(windows)]
fn main() -> std::io::Result<()> {
2024-05-09 20:33:05 +00:00
set_commit_env();
2024-05-09 20:33:05 +00:00
static_vcruntime::metabuild();
let mut res = winres::WindowsResource::new();
// This sets the icon.
res.set_icon("images/icons/icon.ico");
// This sets the [Run as Administrator] metadata flag for Windows.
// Why do I do this?: [https://github.com/hinto-janai/gupax/tree/main/src#why-does-gupax-need-to-be-admin-on-windows]
// TL;DR: Because Windows.
res.set_manifest(
r#"
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
2024-05-09 20:33:05 +00:00
"#,
);
res.compile()
}
#[cfg(unix)]
fn main() {
2024-05-09 20:33:05 +00:00
set_commit_env();
}
// Set the current git commit to the env var [COMMIT].
fn set_commit_env() {
2024-05-09 20:33:05 +00:00
println!("cargo:rerun-if-changed=.git/refs/heads/");
2024-05-09 20:33:05 +00:00
let output = std::process::Command::new("git")
.args(["rev-parse", "HEAD"])
.output()
.unwrap();
2024-05-09 20:33:05 +00:00
let commit = String::from_utf8(output.stdout).unwrap();
2024-05-09 20:33:05 +00:00
assert!(commit.len() >= 40);
2024-05-09 20:33:05 +00:00
println!("cargo:rustc-env=COMMIT={commit}");
}