7 lines
91 B
Rust
7 lines
91 B
Rust
extern crate pkg_config;
|
|
|
|
fn main() {
|
|
pkg_config::find_library("python3").unwrap();
|
|
}
|
|
|