mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-16 14:53:28 +02:00
ca61ca4f57
Add a number of slides that cover most of CXX's functionality and demonstrate how it can be used. Fixes #823. --------- Co-authored-by: Martin Geisler <mgeisler@google.com>
13 lines
409 B
Rust
13 lines
409 B
Rust
fn main() {
|
|
cxx_build::bridge("src/main.rs")
|
|
.file("src/blobstore.cc")
|
|
.flag_if_supported("-std=c++14")
|
|
.include(".")
|
|
.include("../../../target/cxxbridge/demo/src")
|
|
.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");
|
|
}
|