solutions/runtime/build.rs

11 lines
173 B
Rust
Raw Normal View History

2019-08-29 15:44:46 +00:00
fn main() {
#[cfg(feature = "std")]
{
substrate_wasm_builder::WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.build();
}
2019-08-29 15:44:46 +00:00
}