// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 use cfg_aliases::cfg_aliases; fn main() { // Setup cfg aliases cfg_aliases! { enable_skia_renderer: { any(feature = "renderer-skia", feature = "renderer-skia-opengl", feature = "renderer-skia-vulkan")}, enable_accesskit: { all(feature = "accessibility", not(target_arch = "wasm32")) }, } // This uses `web_sys_unstable_api`, which is typically set via `RUST_FLAGS` println!("cargo:rustc-check-cfg=cfg(web_sys_unstable_apis)"); }