You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.rs 361 B

12345678910
  1. fn main() {
  2. cxx_build::bridge("src/lib.rs") // returns a cc::Build
  3. .file("src/operator.cc")
  4. .flag_if_supported("-std=c++14")
  5. .compile("cxx-example-dataflow-operator");
  6. println!("cargo:rerun-if-changed=src/lib.rs");
  7. println!("cargo:rerun-if-changed=src/operator.cc");
  8. println!("cargo:rerun-if-changed=src/operator.h");
  9. }

DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed datafl