From d9c0304852826968c989d5a797a1f9551cd3d653 Mon Sep 17 00:00:00 2001 From: Maurice Kayser <35454376+MauriceKayser@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:20:24 +0200 Subject: [PATCH] Feature-gate lapack.lib --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index 8f1855f..a6500d7 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,4 @@ fn main() { + #[cfg(feature = "adjacency_matrix")] println!("cargo:rustc-link-lib=dylib=lapack"); }