mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-26 12:17:31 +00:00
10 lines
216 B
Rust
10 lines
216 B
Rust
#[path = "../../configure.rs"]
|
|
mod configure;
|
|
use configure::Config;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=../../configure.rs");
|
|
let cfg = Config::from_env();
|
|
configure::emit_test_config(&cfg);
|
|
}
|