Trevor Gross 7077daa6ad refactor: Move the libm crate to a subdirectory
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.
2025-04-18 17:49:25 -04:00

11 lines
242 B
Rust

#![allow(unexpected_cfgs)]
#[path = "../../libm/configure.rs"]
mod configure;
fn main() {
println!("cargo:rerun-if-changed=../../libm/configure.rs");
let cfg = configure::Config::from_env();
configure::emit_libm_config(&cfg);
}