Files
pezkuwi-runtime-templates/runtime/build.rs
T
2023-11-15 13:41:13 +03:00

14 lines
334 B
Rust

#[cfg(feature = "std")]
fn main() {
substrate_wasm_builder::WasmBuilder::new()
.with_current_project()
.export_heap_base()
.import_memory()
.build()
}
/// The wasm builder is deactivated when compiling
/// this crate for wasm to speed up the compilation.
#[cfg(not(feature = "std"))]
fn main() {}