mirror of
https://github.com/openai/codex.git
synced 2026-05-17 01:32:32 +00: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");
|
|
}
|
|
}
|