serai/processor/ethereum/deployer/build.rs
2024-09-19 23:36:32 -07:00

5 lines
206 B
Rust

fn main() {
let artifacts_path =
std::env::var("OUT_DIR").unwrap().to_string() + "/serai-processor-ethereum-deployer";
build_solidity_contracts::build(&[], "contracts", &artifacts_path).unwrap();
}