socket-bot/ica-rs/build.rs

22 lines
390 B
Rust
Raw Normal View History

2024-01-24 14:29:31 +08:00
use std::env;
2024-02-07 12:52:33 +08:00
#[allow(unused)]
2024-01-24 14:29:31 +08:00
// 指定 pyo3 的绑定对象
fn pyo3_config() {
// PYO3_PYTHON=xxxx
#[cfg(windows)]
{
env::set_var("PYO3_PYTHON", "python3.10")
}
// wsl
#[cfg(target_os = "linux")]
{
2024-01-25 22:08:02 +08:00
env::set_var("PYO3_PRINT_CONFIG", "1");
env::set_var("PYO3_PYTHON", "/usr/bin/python3.11");
2024-01-24 14:29:31 +08:00
}
}
fn main() {
2024-02-07 12:52:33 +08:00
// pyo3_config();
}