Reverted dynamic library type

This commit is contained in:
hamilcarBarca17
2023-03-15 13:55:51 -06:00
parent fd2da99277
commit ed669e8034
+1 -1
View File
@@ -18,7 +18,7 @@ fn main() {
.include(&[&ortools_prefix, "/include"].concat())
.compile("cp_sat_wrapper.a");
println!("cargo:rustc-link-search=/opt/ortools/lib");
println!("cargo:rustc-link-lib=dylib=ortools");
println!("cargo:rustc-link-search=native={}/lib", ortools_prefix);
}
}