Seregon/StratoSDK

StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.

Rust/27.3 KB/No license
crates/strato-ui-core/build.rs
1// We can use `std::process:Command` here because this is invoked within a build script,
2// _not_ within the Warp binary (where it could cause a terminal to temporarily flash on
3// Windows).
4#![allow(clippy::disallowed_types)]
5 
6use cfg_aliases::cfg_aliases;
7 
8fn main() {
9 cfg_aliases! {
10 macos: { target_os = "macos" },
11 native: { not(target_family = "wasm") },
12 }
13}
14