Files
fish-shell/crates/common/build.rs
Johannes Altmanninger 828a20ef30 Use cfg!(apple)
2026-03-28 12:41:58 +08:00

6 lines
114 B
Rust

use fish_build_helper::target_os_is_apple;
fn main() {
rsconf::declare_cfg("apple", target_os_is_apple());
}