libfringe/build.rs
edef db6a2ff89b factor Valgrind support out and expose it
Now other Stack / StackSource implementations can use the same Valgrind
code. Ref #3.
2015-04-15 22:25:52 -04:00

6 lines
95 B
Rust

extern crate gcc;
fn main() {
gcc::compile_library("libvalgrind.a", &["src/valgrind.c"]);
}