
Build media and live-kit in test-mode on non-MacOS (Related to https://github.com/zed-industries/zed/issues/5391 https://github.com/zed-industries/zed/issues/5395 https://github.com/zed-industries/zed/issues/5394) This makes it possible to build the media and live-kit crates on non-MacOS Release Notes: - N/A
10 lines
233 B
Rust
10 lines
233 B
Rust
#![allow(non_upper_case_globals)]
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(non_snake_case)]
|
|
#![allow(unused)]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
use objc::*;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|