summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-10-09 18:07:09 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-10-09 18:14:23 +0530
commit26585686b0164464a36ab11dded4f9ffb93bdcd9 (patch)
treeab68d02583e263a01c4ffece5bb68b5f4fbefe0d /ext
parentf7495048480a2927fd4b203ef32b39da8dafe051 (diff)
downloadgst-libav-26585686b0164464a36ab11dded4f9ffb93bdcd9.tar.gz
meson: Generate a pkgconfig file for gstlibav
This matches all other plugins in the other gstreamer repos. This is also necessary for generating the correct libtool archive (.la) files in Cerbero which are needed for static linking on Android and iOS.
Diffstat (limited to 'ext')
-rw-r--r--ext/libav/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/libav/meson.build b/ext/libav/meson.build
index b84c67b..f71aa2e 100644
--- a/ext/libav/meson.build
+++ b/ext/libav/meson.build
@@ -13,7 +13,7 @@ sources = [
'gstavdeinterlace.c',
]
-gstlibav = library('gstlibav',
+gstlibav_plugin = library('gstlibav',
sources,
c_args : gst_libav_args,
include_directories : [configinc],
@@ -22,3 +22,4 @@ gstlibav = library('gstlibav',
install : true,
install_dir : plugins_install_dir,
)
+pkgconfig.generate(gstlibav_plugin, install_dir : plugins_pkgconfig_install_dir)