From a64c382e88b9be52d90959bf19b3cb600c46e238 Mon Sep 17 00:00:00 2001 From: Peter <> Date: Mon, 10 Jun 2019 21:57:53 +0100 Subject: [PATCH] Update build configuration --- BUCK | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/BUCK b/BUCK index 3726c7573a..2284b3312d 100644 --- a/BUCK +++ b/BUCK @@ -159,6 +159,16 @@ apple_library( ], header_namespace = 'ffmpeg', exported_headers = ffmpeg_header_targets, + linker_flags = [ + '-L$(location :libffmpeg_build)/FFmpeg-iOS/lib', + '-lavutil', + '-lavcodec', + '-lavformat', + '-lswresample', + '-lbz2', + '-liconv', + '-lz', + ], exported_linker_flags = [ '-L$(location :libffmpeg_build)/FFmpeg-iOS/lib', '-lavutil', @@ -167,9 +177,11 @@ apple_library( '-lswresample', '-lbz2', '-liconv', + '-lz', ], deps = [ - ':libffmpeg_build' + ':libffmpeg_build', + ':opus', ], )