openethereum/util/sha3/build.rs

11 lines
225 B
Rust
Raw Normal View History

2016-01-16 14:29:36 +01:00
// build.rs
// Bring in a dependency on an externally maintained `gcc` package which manages
// invoking the C compiler.
extern crate gcc;
fn main() {
gcc::compile_library("libtinykeccak.a", &["src/tinykeccak.c"]);
}