third_party_rust_cxx/demo/build.rs

11 lines
332 B
Rust
Raw Normal View History

2019-10-20 18:51:12 +00:00
fn main() {
2020-04-29 19:34:47 +00:00
cxx_build::bridge("src/main.rs")
.file("src/blobstore.cc")
.flag_if_supported("-std=c++14")
2019-10-20 18:51:12 +00:00
.compile("cxxbridge-demo");
println!("cargo:rerun-if-changed=src/main.rs");
println!("cargo:rerun-if-changed=src/blobstore.cc");
println!("cargo:rerun-if-changed=include/blobstore.h");
2019-10-20 18:51:12 +00:00
}