Skip to content

Commit 63748cb

Browse files
committed
Print contents of inc_dir
1 parent 60edb4d commit 63748cb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hdf5-sys/build.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,11 @@ impl Header {
217217

218218
fn get_conf_header<P: AsRef<Path>>(inc_dir: P) -> PathBuf {
219219
let inc_dir = inc_dir.as_ref();
220+
println!("{}", inc_dir.display());
221+
222+
for d in inc_dir.read_dir().unwrap() {
223+
println!("{:?}", d.unwrap());
224+
}
220225

221226
if inc_dir.join("H5pubconf.h").is_file() {
222227
inc_dir.join("H5pubconf.h")

0 commit comments

Comments
 (0)