fn main() {
println!("cargo:rustc-check-cfg=cfg(openrtc_unpublished_ble)");
cfg_aliases::cfg_aliases! {
// True when compiling for the browser (wasm32 target).
// Use `#[cfg(browser)]` instead of `#[cfg(target_arch = "wasm32")]`.
browser: { target_arch = "wasm32" },
// True when compiling for native (any non-wasm32 target).
// Use `#[cfg(native)]` instead of `#[cfg(not(target_arch = "wasm32"))]`.
native: { not(target_arch = "wasm32") },
}
}