about summary refs log tree commit diff stats
path: root/pkgs/by-name/ts/tskm/build.rs
blob: 8dfb213bd7d55c1757ab2b0494d72c8394d5b41c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use anyhow::{Context, Result};
use clap::{CommandFactory, ValueEnum};
use clap_complete::generate_to;
use clap_complete::Shell;

use std::env;
use std::fs;
use std::path::PathBuf;

use crate::cli::CliArgs;

pub mod task {
    include!("src/task/mod.rs");
}

pub mod interface {
    pub mod input {
        include!("src/interface/input/mod.rs");
    }
    pub mod project {
        include!("src/interface/project/mod.rs");
    }
}

pub mod cli {
    include!("src/cli.rs");
}

fn main() -> Result<()> {
    let outdir = match env::var_os("SHELL_COMPLETION_DIR") {
        None => return Ok(()),
        Some(outdir) => outdir,
    };

    if !PathBuf::from(&outdir).exists() {
        fs::create_dir_all(&outdir)?;
    }

    let mut cmd = CliArgs::command();

    for &shell in Shell::value_variants() {
        let path = generate_to(shell, &mut cmd, "tskm", &outdir).with_context(|| {
            format!("Failed to output shell completion for {shell} to {outdir:?}")
        })?;
        println!("cargo:warning=completion file for {shell} is generated at: {path:?}");
    }

    Ok(())
}