From 9234a72f4f975bc24dc0f525074650b45f4e0157 Mon Sep 17 00:00:00 2001 From: lummax Date: Sat, 21 Nov 2015 13:55:12 +0100 Subject: [PATCH] cargo: add `links = ffmpeg` This allows overriding the configuration via `.cargo/config`. Example: ``` [target.x86_64-unknown-linux-gnu.ffmpeg] rustc-link-search = ["target/native/lib"] ``` --- sys/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 7b172e2..cb9e231 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -2,6 +2,7 @@ name = "ffmpeg-sys" version = "2.8.0-5" build = "build.rs" +links = "ffmpeg" authors = ["meh. "] license = "WTFPL"