Files
Marlin/cli-bin/build.rs
thePR0M3TH3AN f6fca2c0dd update
2025-05-18 16:02:48 -04:00

12 lines
397 B
Rust

// cli-bin/build.rs
//
// The CLI currently needs no build-time code-generation, but Cargo
// insists on rerunning any build-script each compile. Tell it to
// rebuild only if this file itself changes.
fn main() {
// If you later add code-gen (e.g. embed completions or YAML), add
// further `cargo:rerun-if-changed=<path>` lines here.
println!("cargo:rerun-if-changed=build.rs");
}