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.
|
- use std::path::Path;
-
- fn main() {
- dora_operator_api_types::generate_headers(Path::new("operator_types.h"))
- .expect("failed to create operator_types.h");
-
- // don't rebuild on changes (otherwise we rebuild on every run as we're
- // writing the `operator_types.h` file; cargo will still rerun this script
- // when the `dora_operator_api_types` crate changes)
- println!("cargo:rerun-if-changed=build.rs");
- }
|