Files
serai/processor/ethereum/deployer/build.rs

6 lines
202 B
Rust
Raw Normal View History

2024-09-15 17:13:10 -04:00
fn main() {
let artifacts_path =
std::env::var("OUT_DIR").unwrap().clone() + "/serai-processor-ethereum-deployer";
2024-09-15 17:13:10 -04:00
build_solidity_contracts::build(&[], "contracts", &artifacts_path).unwrap();
}