artiq-zynq-oxford/firmware/libksupport/build.rs

13 lines
191 B
Rust
Raw Permalink Normal View History

2018-10-05 05:19:23 +08:00
extern crate cc;
fn main() {
let glue_path = "glue.c";
println!("cargo:rerun-if-changed={}", glue_path);
cc::Build::new()
.file(glue_path)
.compile("glue");
}