2025-04-19 22:15:43 +00:00
|
|
|
#[path = "../libm/configure.rs"]
|
2024-10-26 00:44:50 -05:00
|
|
|
mod configure;
|
|
|
|
|
use configure::Config;
|
2024-10-16 22:41:07 -05:00
|
|
|
|
2024-10-05 13:57:10 -05:00
|
|
|
fn main() {
|
2025-04-19 22:15:43 +00:00
|
|
|
println!("cargo:rerun-if-changed=../libm/configure.rs");
|
2024-10-16 22:41:07 -05:00
|
|
|
let cfg = Config::from_env();
|
2024-10-26 00:44:50 -05:00
|
|
|
configure::emit_test_config(&cfg);
|
2024-10-16 22:41:07 -05:00
|
|
|
}
|