summaryrefslogtreecommitdiff
path: root/pkgconfig
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2016-09-09 11:08:53 +1000
committerMatthew Waters <matthew@centricular.com>2016-09-09 11:22:47 +1000
commitb5b7a3aec3282c30fbe100901e7789666fc4cb14 (patch)
tree9aa182ea588ee6080f5e1b08cf3b5be53a6cfc89 /pkgconfig
parent753c423784a3f24c217e37770272499449c8af61 (diff)
downloadgstreamer-plugins-bad-b5b7a3aec3282c30fbe100901e7789666fc4cb14.tar.gz
meson: add some starting build files for GL
Currently only works on linux with egl/glx + wayland/x11 but the general principals have been layed out for adding the other GL platforms/winsys'.
Diffstat (limited to 'pkgconfig')
-rw-r--r--pkgconfig/meson.build7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
index 3356936e1..e43046204 100644
--- a/pkgconfig/meson.build
+++ b/pkgconfig/meson.build
@@ -14,14 +14,17 @@ pkg_libs = [
'bad-base',
'bad-video',
'codecparsers',
- # Broken and not built currently
- #'gl',
'insertbin',
'mpegts',
'player',
'plugins-bad',
]
+# XXX: requires the meson.build to be parsed/executed after gst-libs/gl/meson.build
+if build_gstgl
+ pkg_libs += 'gl'
+endif
+
# FIXME: -uninstalled.pc files (if still needed?)
foreach p : pkg_libs
infile = 'gstreamer-@0@.pc.in'.format(p)