We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30052b6 commit 0732c4fCopy full SHA for 0732c4f
build.rs
@@ -346,14 +346,13 @@ mod non_windows {
346
mod windows {
347
use super::*;
348
pub fn static_linking_inner(_env_vars: &EnvVars, _library_names: &[&str]) -> Vec<String> {
349
- let include_paths = vcpkg::Config::new()
+ vcpkg::Config::new()
350
.find_package("ffmpeg")
351
.unwrap()
352
.include_paths
353
.into_iter()
354
.map(|x| x.to_str().unwrap().to_string())
355
- .collect();
356
- include_paths
+ .collect()
357
}
358
359
0 commit comments