mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-25 19:30:29 +00:00
12 lines
243 B
Rust
12 lines
243 B
Rust
fn main() {
|
|
if cfg!(trybuild) {
|
|
return;
|
|
}
|
|
|
|
let sources = vec!["lib.rs", "module.rs"];
|
|
cxx_build::bridges(sources)
|
|
.file("tests.cc")
|
|
.flag_if_supported("-std=c++11")
|
|
.compile("cxx-test-suite");
|
|
}
|