mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 08:10:49 +00:00
10 lines
209 B
Rust
10 lines
209 B
Rust
|
//! A kind of meta-build.rs that can be configured to do different things.
|
||
|
//!
|
||
|
//! Please try to keep this file as clean as possible.
|
||
|
|
||
|
use generate_wasi_tests;
|
||
|
|
||
|
fn main() {
|
||
|
generate_wasi_tests::build();
|
||
|
}
|