mirror of
https://github.com/topjohnwu/cxx.git
synced 2024-11-27 22:00:33 +00:00
9 lines
229 B
Rust
9 lines
229 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.file("src/cxx.cc")
|
|
.flag("-std=c++11")
|
|
.compile("cxxbridge02");
|
|
println!("cargo:rerun-if-changed=src/cxx.cc");
|
|
println!("cargo:rerun-if-changed=include/cxx.h");
|
|
}
|