From 8a3fad0e79a47cbc18e11514b6236736a1e15690 Mon Sep 17 00:00:00 2001 From: Julian Bayardo Spadafora Date: Sun, 12 Mar 2023 16:03:16 -0700 Subject: [PATCH] Woops, remove need for shared libraries --- sys/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/build.rs b/sys/build.rs index 9a55570..32906c0 100644 --- a/sys/build.rs +++ b/sys/build.rs @@ -66,7 +66,7 @@ fn main() { let code = std::process::Command::new("cmake") .arg("..") .arg("-DCMAKE_BUILD_TYPE=Release") - .arg("-DBUILD_SHARED_LIBS=ON") + .arg("-DBUILD_SHARED_LIBS=OFF") .arg("-DWHISPER_ALL_WARNINGS=OFF") .arg("-DWHISPER_ALL_WARNINGS_3RD_PARTY=OFF") .arg("-DWHISPER_BUILD_TESTS=OFF")