From 370db2f2c4406f3373be9065cda8fcdb3929b693 Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 4 Jun 2026 19:27:34 +0200 Subject: refactor(engine): remove cfg aliases --- engine/build.rs | 34 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'engine/build.rs') diff --git a/engine/build.rs b/engine/build.rs index 7ad5a9b..e9a8322 100644 --- a/engine/build.rs +++ b/engine/build.rs @@ -1,7 +1,6 @@ use std::path::{Path, PathBuf}; use std::process::Command; -use cfg_aliases::cfg_aliases; use serde::Deserialize; fn main() @@ -52,39 +51,6 @@ fn main() ) .unwrap(); } - - // Setup alias to reduce `cfg` boilerplate. - cfg_aliases! { - // Systems. - android_platform: { target_os = "android" }, - wasm_platform: { target_family = "wasm" }, - macos_platform: { target_os = "macos" }, - ios_platform: { target_os = "ios" }, - apple: { any(ios_platform, macos_platform) }, - free_unix: { all(unix, not(apple), not(android_platform)) }, - - // Native displays. - x11_platform: { all(free_unix, not(wasm_platform)) }, - wayland_platform: { all(free_unix, not(wasm_platform)) }, - // x11_platform: { all(feature = "x11", free_unix, not(wasm_platform)) }, - // wayland_platform: { all(feature = "wayland", free_unix, not(wasm_platform)) }, - - // Backends. - egl_backend: { - all(any(windows, unix), not(apple), not(wasm_platform)) - }, - glx_backend: { all(x11_platform, not(wasm_platform)) }, - wgl_backend: { all(windows, not(wasm_platform)) }, - cgl_backend: { all(macos_platform, not(wasm_platform)) }, - - // Backends. - // egl_backend: { - // all(feature = "egl", any(windows, unix), not(apple), not(wasm_platform)) - // }, - // glx_backend: { all(feature = "glx", x11_platform, not(wasm_platform)) }, - // wgl_backend: { all(feature = "wgl", windows, not(wasm_platform)) }, - // cgl_backend: { all(macos_platform, not(wasm_platform)) }, - } } #[derive(Debug, Deserialize)] -- cgit v1.2.3-18-g5258