Files
tauri-plugin-window/build.rs
Lucas Fernandes Nogueira b0c4aefa7e chore: add license headers (#384)
* feat: check for license headers

* add headers

* format

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/5039439202

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
2023-05-21 19:57:32 +00:00

19 lines
553 B
Rust

// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
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);
}
// 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}");
}
}