Skip to content

Commit

Permalink
Hold up
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy committed Jul 18, 2024
1 parent a83ba85 commit 78de50e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ fn main() {
let lib_path = dst.join("build").join("lib");
println!("cargo:rustc-link-search=native={}", lib_path.display());
// On windows, a new folder is created for the static lib
let lib_path = dst.join("build").join("lib").join("Release");
let lib_path = dst.join("lib").join("Release");
println!("cargo:rustc-link-search=native={}", lib_path.display());
let lib_path = dst.join("build").join("lib").join("Debug");
let lib_path = dst.join("lib").join("Debug");
println!("cargo:rustc-link-search=native={}", lib_path.display());

let lief_lib_path = dst.join("build").join("LIEF").join("lib");
Expand Down

0 comments on commit 78de50e

Please sign in to comment.