Trevor Gross ed72c4ec69 Use rustdoc output to create a list of public API
Rather than collecting a list of file names in `libm-test/build.rs`,
just use a script to parse rustdoc's JSON output.
2025-01-01 11:01:50 +00:00

9 lines
157 B
Rust

#[path = "../../configure.rs"]
mod configure;
use configure::Config;
fn main() {
let cfg = Config::from_env();
configure::emit_test_config(&cfg);
}