mirror of
https://github.com/openai/codex.git
synced 2026-05-04 21:32:21 +03:00
6 lines
140 B
Rust
6 lines
140 B
Rust
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("macos") {
|
|
println!("cargo:rustc-link-arg=-ObjC");
|
|
}
|
|
}
|