mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 19:28:29 +00:00

Rather than collecting a list of file names in `libm-test/build.rs`, just use a script to parse rustdoc's JSON output.
9 lines
157 B
Rust
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);
|
|
}
|