solutions/runtime/build.rs

11 lines
193 B
Rust
Raw Normal View History

2020-03-05 16:53:25 +00:00
use wasm_builder_runner::WasmBuilder;
2019-08-29 15:44:46 +00:00
fn main() {
2020-03-05 16:53:25 +00:00
WasmBuilder::new()
.with_current_project()
2020-07-25 12:35:30 +00:00
.with_wasm_builder_from_crates("2.0.0")
2020-03-05 16:53:25 +00:00
.export_heap_base()
.import_memory()
.build()
2019-08-29 15:44:46 +00:00
}