17 lines
407 B
Rust
17 lines
407 B
Rust
use openssl_src;
|
|
use std::path::PathBuf;
|
|
|
|
pub fn get_openssl(_target: &str) -> (Vec<PathBuf>, PathBuf) {
|
|
let artifacts = openssl_src::Build::new().build();
|
|
println!("cargo:vendored=1");
|
|
println!(
|
|
"cargo:root={}",
|
|
artifacts.lib_dir().parent().unwrap().display()
|
|
);
|
|
|
|
(
|
|
vec![artifacts.lib_dir().to_path_buf()],
|
|
artifacts.include_dir().to_path_buf(),
|
|
)
|
|
}
|