mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-27 09:20:33 +00:00
9 lines
247 B
Rust
9 lines
247 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.file("src/cxxbridge.cc")
|
|
.flag("-std=c++11")
|
|
.compile("cxxbridge01");
|
|
println!("cargo:rerun-if-changed=src/cxxbridge.cc");
|
|
println!("cargo:rerun-if-changed=include/cxxbridge.h");
|
|
}
|