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