mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-07 12:47:29 +00:00

In preparation for switching to a virtual manifest, move the `libm` crate into a subdirectory and update paths to match. Updating `Cargo.toml` is done in the next commit so git tracks the moved file correctly.
10 lines
226 B
Rust
10 lines
226 B
Rust
#[path = "../../libm/configure.rs"]
|
|
mod configure;
|
|
use configure::Config;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=../../libm/configure.rs");
|
|
let cfg = Config::from_env();
|
|
configure::emit_test_config(&cfg);
|
|
}
|