solutions/runtime/build.rs

11 lines
194 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-06-10 16:47:28 +00:00
.with_wasm_builder_from_crates("1.0.11")
2020-03-05 16:53:25 +00:00
.export_heap_base()
.import_memory()
.build()
2019-08-29 15:44:46 +00:00
}