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