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.
|
- fn main() {
- println!("cargo:rerun-if-env-changed=AMENT_PREFIX_PATH");
-
- let ament_prefix_paths =
- std::env::var("AMENT_PREFIX_PATH").expect("$AMENT_PREFIX_PATH is supposed to be set.");
- for ament_prefix_path in ament_prefix_paths.split(':') {
- println!("cargo:rustc-link-search=native={}/lib", ament_prefix_path);
- }
- }
|