From 9bf9d42ad329f67896a3c29a0dd800885ac906f8 Mon Sep 17 00:00:00 2001 From: ZacJW Date: Sat, 15 Nov 2025 20:50:25 +0000 Subject: [PATCH] Add build script to dynamically link to libburn --- build.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 build.rs diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..da30924 --- /dev/null +++ b/build.rs @@ -0,0 +1,3 @@ +fn main() { + println!("cargo::rustc-link-lib=dylib=burn"); +} \ No newline at end of file