2020-10-02 21:50:50 +03:00
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
|
|
|
|
// If a file named `.tag` is present, we'll take its contents for the
|
|
|
|
// version number that we report in wezterm -h.
|
|
|
|
let mut ci_tag = String::new();
|
|
|
|
if let Ok(tag) = std::fs::read("../.tag") {
|
|
|
|
if let Ok(s) = String::from_utf8(tag) {
|
|
|
|
ci_tag = s.trim().to_string();
|
|
|
|
println!("cargo:rerun-if-changed=../.tag");
|
|
|
|
}
|
2021-03-18 07:02:03 +03:00
|
|
|
} else {
|
|
|
|
// Otherwise we'll derive it from the git information
|
2022-05-22 19:01:09 +03:00
|
|
|
|
|
|
|
if let Ok(repo) = git2::Repository::discover(".") {
|
|
|
|
if let Ok(ref_head) = repo.find_reference("HEAD") {
|
|
|
|
let repo_path = repo.path().to_path_buf();
|
|
|
|
|
|
|
|
if let Ok(resolved) = ref_head.resolve() {
|
|
|
|
if let Some(name) = resolved.name() {
|
|
|
|
let path = repo_path.join(name);
|
|
|
|
if path.exists() {
|
|
|
|
println!(
|
|
|
|
"cargo:rerun-if-changed={}",
|
|
|
|
path.canonicalize().unwrap().display()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 07:02:03 +03:00
|
|
|
let head = Path::new("../.git/HEAD");
|
|
|
|
if head.exists() {
|
|
|
|
let head = head.canonicalize().unwrap();
|
|
|
|
println!("cargo:rerun-if-changed={}", head.display());
|
|
|
|
if let Ok(output) = std::process::Command::new("git")
|
2021-04-30 06:23:47 +03:00
|
|
|
.args(&[
|
2021-12-06 05:21:06 +03:00
|
|
|
"-c",
|
|
|
|
"core.abbrev=8",
|
2021-04-30 06:23:47 +03:00
|
|
|
"show",
|
|
|
|
"-s",
|
|
|
|
"--format=%cd-%h",
|
|
|
|
"--date=format:%Y%m%d-%H%M%S",
|
|
|
|
])
|
2021-03-18 07:02:03 +03:00
|
|
|
.output()
|
|
|
|
{
|
|
|
|
let info = String::from_utf8_lossy(&output.stdout);
|
|
|
|
ci_tag = info.trim().to_string();
|
|
|
|
}
|
|
|
|
}
|
2020-10-02 21:50:50 +03:00
|
|
|
}
|
2021-03-18 07:02:03 +03:00
|
|
|
|
2021-03-25 20:05:34 +03:00
|
|
|
let target = std::env::var("TARGET").unwrap_or_else(|_| "unknown".to_string());
|
2021-03-18 07:02:03 +03:00
|
|
|
|
|
|
|
println!("cargo:rustc-env=WEZTERM_TARGET_TRIPLE={}", target);
|
2020-10-02 21:50:50 +03:00
|
|
|
println!("cargo:rustc-env=WEZTERM_CI_TAG={}", ci_tag);
|
|
|
|
println!("cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET=10.9");
|
|
|
|
}
|