diff options
Diffstat (limited to 'bindgen/rust/build.rs')
-rw-r--r-- | bindgen/rust/build.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindgen/rust/build.rs b/bindgen/rust/build.rs index 113059b..18e8ab3 100644 --- a/bindgen/rust/build.rs +++ b/bindgen/rust/build.rs @@ -3,12 +3,13 @@ use std::path::PathBuf; fn main() { // Tell cargo to look for shared libraries in the specified directory - println!("cargo:rustc-link-search=../../build/macosx/arm64/debug"); + // println!("cargo:rustc-link-search=../../build/macosx/arm64/debug"); + println!("cargo:rustc-link-search=../../build/windows/x64/debug"); // Tell cargo to tell rustc to link the system bzip2 // shared library. println!("cargo:rustc-link-lib=core_static"); - println!("cargo:rustc-link-lib=glfw"); + println!("cargo:rustc-link-lib=glfw3"); // The bindgen::Builder is the main entry point // to bindgen, and lets you build up options for |