()
| 529 | } |
| 530 | |
| 531 | fn main() { |
| 532 | let env_vars = EnvVars::init(); |
| 533 | if env_vars.docs_rs.is_some() { |
| 534 | docs_rs_linking(&env_vars); |
| 535 | } else if env_vars.ffmpeg_dll_path.is_some() { |
| 536 | dynamic_linking(&env_vars); |
| 537 | } else { |
| 538 | // fallback to static linking |
| 539 | static_linking(&env_vars); |
| 540 | } |
| 541 | } |
nothing calls this directly
no test coverage detected