MCPcopy Create free account
hub / github.com/CCExtractor/rusty_ffmpeg / static_linking_with_libs_dir

Function static_linking_with_libs_dir

build.rs:245–250  ·  view source on GitHub ↗
(library_names: &[&str], ffmpeg_libs_dir: &Path)

Source from the content-addressed store, hash-verified

243}
244
245fn static_linking_with_libs_dir(library_names: &[&str], ffmpeg_libs_dir: &Path) {
246 println!("cargo:rustc-link-search=native={}", ffmpeg_libs_dir);
247 for library_name in library_names {
248 println!("cargo:rustc-link-lib=static={}", library_name);
249 }
250}
251
252#[allow(dead_code)]
253pub struct EnvVars {

Callers 1

static_linkingFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected