24 lines
794 B
Rust
24 lines
794 B
Rust
fn main() {
|
|
static_vcruntime::metabuild();
|
|
tauri_winres::WindowsResource::new()
|
|
.set("FileDescription", "GTA Tools")
|
|
.set("ProductName", "GTA Tools")
|
|
.set("LegalCopyright", "futile <git@futile.eu>")
|
|
.set_language(0x0009)
|
|
.set_icon("assets/icon.ico")
|
|
.compile()
|
|
.unwrap();
|
|
embed_latest_git_hash();
|
|
}
|
|
|
|
fn embed_latest_git_hash() {
|
|
let git_rev_parse = std::process::Command::new("git")
|
|
.args(["rev-parse", "--short=8", "HEAD"])
|
|
.output()
|
|
.unwrap();
|
|
let git_hash = String::from_utf8(git_rev_parse.stdout).unwrap();
|
|
println!("cargo::rustc-env=LATEST_GIT_COMMIT_HASH={git_hash}");
|
|
println!("cargo::rerun-if-changed=.git/refs/heads/main");
|
|
println!("cargo::rerun-if-changed=.git/HEAD");
|
|
}
|