build.rs

1fn main() {
2    if cfg!(target_os = "macos") {
3        println!("cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET=10.15.7");
4    }
5}