4 lines
159 B
Rust
4 lines
159 B
Rust
fn main() {
|
|
let home = std::env::var("HOME").expect("${HOME} is missing");
|
|
println!("cargo:rustc-env=LD_LIBRARY_PATH={home}/.pyenv/versions/3.11.4/lib");
|
|
} |