2022-08-28 21:13:21 +03:00
|
|
|
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
|
2022-08-02 17:25:28 +03:00
|
|
|
// 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) {
|
|
|
|
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);
|
|
|
|
}
|