mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 11:13:40 +03:00
9ac930380a
* fix: emit cargo cfg alias using new syntax too * Update lib.rs * fixes for other crates * clippy * readd clone --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
20 lines
587 B
Rust
20 lines
587 B
Rust
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// creates a cfg alias if `has_feature` is true.
|
|
// `alias` must be a snake case string.
|
|
fn alias(alias: &str, has_feature: bool) {
|
|
println!("cargo:rustc-check-cfg=cfg({alias})");
|
|
if has_feature {
|
|
println!("cargo:rustc-cfg={alias}");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
|
|
let mobile = target_os == "ios" || target_os == "android";
|
|
alias("desktop", !mobile);
|
|
alias("mobile", mobile);
|
|
}
|