Skip to content

Commit

Permalink
WIP add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Oct 17, 2022
1 parent 43836a2 commit c94f31b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ jobs:
uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b
with:
command: run
args: --package export-validator
args: --package export-validator -vv
5 changes: 5 additions & 0 deletions tools/export-validator/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ fn main() -> anyhow::Result<()> {
if cfg!(target_family = "windows") {
fs::copy(libs_dir.join("3mf.dll"), out_dir.join("3mf.dll"))?;
println!("cargo:rustc-link-search={}", out_dir.display());

for entry in fs::read_dir(out_dir)? {
println!("{}", entry?.path().display());
}
// panic!();
}

Ok(())
Expand Down

0 comments on commit c94f31b

Please sign in to comment.