summaryrefslogtreecommitdiffstats
path: root/build/main.rs
blob: 8966ee5282941fa5d98cb7ebc5758dbd84b47116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "application")]
mod application;
mod syntax_mapping;
mod util;

fn main() -> anyhow::Result<()> {
    // only watch manually-designated files
    // see: https://doc.rust-lang.org/cargo/reference/build-scripts.html#rerun-if-changed
    println!("cargo:rerun-if-changed=build/");

    syntax_mapping::build_static_mappings()?;

    #[cfg(feature = "application")]
    application::gen_man_and_comp()?;

    Ok(())
}