ftdi-prog/ftdi-vcp-sys/build.rs
Sean Cross 52fa59d4ac initial commit
Signed-off-by: Sean Cross <sean@xobs.io>
2020-03-05 21:51:50 +08:00

11 lines
299 B
Rust

fn main() {
let vcp_dir = "lib/vcp-2.12.28/amd64";
println!("cargo:rustc-link-search=native={}", vcp_dir);
// println!("cargo:rustc-link-lib=static={}/ftd2xx", vcp_dir);
// cc::Build::new()
// .file("foo.c")
// .file("bar.c")
// .compile("foo");
}