-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathbuild.rs
More file actions
18 lines (16 loc) · 702 Bytes
/
Copy pathbuild.rs
File metadata and controls
18 lines (16 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2020 rust-mysql-common contributors
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.
use std::env;
fn main() {
let names = ["CARGO_CFG_TARGET_OS", "CARGO_CFG_TARGET_ARCH"];
for name in &names {
let value = env::var(name)
.unwrap_or_else(|_| panic!("Could not get the environment variable {}", name));
println!("cargo:rustc-env={}={}", name, value);
}
}