Skip to content

Commit 6f9d052

Browse files
committed
Print contents of inc_dir
1 parent bdd3827 commit 6f9d052

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
@@ -211,6 +211,11 @@ impl Header {
211211

212212
fn get_conf_header<P: AsRef<Path>>(inc_dir: P) -> PathBuf {
213213
let inc_dir = inc_dir.as_ref();
214+
println!("{}", inc_dir.display());
215+
216+
for d in inc_dir.read_dir().unwrap() {
217+
println!("{:?}", d.unwrap());
218+
}
214219

215220
if inc_dir.join("H5pubconf.h").is_file() {
216221
inc_dir.join("H5pubconf.h")

0 commit comments

Comments
 (0)