mirror of
https://github.com/figsoda/mmtc
synced 2024-11-11 02:34:13 +00:00
26 lines
647 B
Rust
26 lines
647 B
Rust
use clap::IntoApp;
|
|
use clap_generate::{generate_to, generators};
|
|
|
|
use std::{env, fs::create_dir_all, path::Path};
|
|
|
|
include!("src/cli.rs");
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-env-changed=GEN_COMPLETIONS");
|
|
|
|
if env::var_os("GEN_COMPLETIONS") != Some("1".into()) {
|
|
return;
|
|
}
|
|
|
|
let out = &Path::new(&env::var_os("OUT_DIR").unwrap()).join("completions");
|
|
create_dir_all(out).unwrap();
|
|
let app = &mut Opts::into_app();
|
|
|
|
macro_rules! generate {
|
|
($($g:ident),*) => {
|
|
$(generate_to::<generators::$g, _, _>(app, "mmtc", out);)*
|
|
}
|
|
}
|
|
|
|
generate![Bash, Elvish, Fish, PowerShell, Zsh];
|
|
}
|