1 2 3 4 5 6 7 8 9 10
fn main() { #[cfg(feature = "to_cxx")] { cxx_build::bridge("src/types.rs") .std("c++14") .compile("robot_behavior_cxx"); println!("cargo:rerun-if-changed=src/ffi/to_cxx.rs"); } }