1 2 3 4 5 6 7
//! Print the path to the generated code. fn main() { let paths: Vec<std::path::PathBuf> = include!(concat!(env!("OUT_DIR"), "/generated-files.rs")); for path in paths { println!("{}", path.display()); } }