summaryrefslogtreecommitdiff
path: root/bindgen/rust/build.rs
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-07-26 16:37:53 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-07-26 16:37:53 +1000
commitf083cacb259054ce996b70f8b9dc0d9eb0bdbfb8 (patch)
treecfec9813483e139d8f4ca71eefb4ec9a0450826f /bindgen/rust/build.rs
parent9d11440c145cef897853576b509316bf952cb121 (diff)
wip egui
Diffstat (limited to 'bindgen/rust/build.rs')
-rw-r--r--bindgen/rust/build.rs5
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