aboutsummaryrefslogtreecommitdiff
path: root/helix-term/build.rs
blob: 526cdc41311a6ae0f2e1eb747b2581e124f3828e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use helix_loader::grammar::{build_grammars, fetch_grammars};
use std::borrow::Cow;
use std::process::Command;

fn main() {
    let git_hash = Command::new("git")
        .args(&["rev-parse", "HEAD"])
        .output()
        .ok()
        .filter(|output| output.status.success())
        .and_then(|x| String::from_utf8(x.stdout).ok());

    let version: Cow<_> = match git_hash {
        Some(git_hash) => format!("{} ({})", env!("CARGO_PKG_VERSION"), &git_hash[..8]).into(),
        None => env!("CARGO_PKG_VERSION").into(),
    };

    if std::env::var("HELIX_DISABLE_AUTO_GRAMMAR_BUILD").is_err() {
        fetch_grammars().expect("Failed to fetch tree-sitter grammars");
        build_grammars().expect("Failed to compile tree-sitter grammars");
    }

    println!("cargo:rerun-if-changed=../runtime/grammars/");

    println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", version);
}