embargo_cpp/cli/clean.rs
1use clap::Args;
2
3#[derive(Args, Clone, Debug)]
4pub struct CleanArgs {
5 /// Clean the debug build directory
6 #[arg(short, long)]
7 pub debug: bool,
8
9 /// Clean the release build directory
10 #[arg(short, long)]
11 pub release: bool,
12
13 /// Clean out object files
14 #[arg(short, long)]
15 pub objects: bool,
16}