summaryrefslogtreecommitdiff
path: root/ext/gtk
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2020-07-24 16:58:34 +1000
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-08-07 07:58:29 +0000
commit3296a03d73b9794aedf3e040b71fe39f3362bbbd (patch)
treede984dd2f367930540a05078d08380c18c02fc6e /ext/gtk
parent28a616f6933f11cab372cf4e1bb143b99c89bd0c (diff)
downloadgstreamer-plugins-good-3296a03d73b9794aedf3e040b71fe39f3362bbbd.tar.gz
build: update for gl pkg-config file split
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/680>
Diffstat (limited to 'ext/gtk')
-rw-r--r--ext/gtk/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gtk/meson.build b/ext/gtk/meson.build
index d7167aa3e..3a30017e7 100644
--- a/ext/gtk/meson.build
+++ b/ext/gtk/meson.build
@@ -20,7 +20,7 @@ if gtk_dep.found()
# FIXME: automagic
gtk_x11_dep = dependency('gtk+-x11-3.0', required : false)
if gtk_x11_dep.found()
- optional_deps += gtk_x11_dep
+ optional_deps += [gtk_x11_dep, gstglx11_dep]
have_gtk3_gl_windowing = true
endif
endif
@@ -29,7 +29,7 @@ if gtk_dep.found()
# FIXME: automagic
gtk_wayland_dep = dependency('gtk+-wayland-3.0', required : false)
if gtk_wayland_dep.found()
- optional_deps += gtk_wayland_dep
+ optional_deps += [gtk_wayland_dep, gstglegl_dep, gstglwayland_dep]
have_gtk3_gl_windowing = true
endif
endif
@@ -39,7 +39,7 @@ if gtk_dep.found()
'gstgtkglsink.c',
'gtkgstglwidget.c',
]
- optional_deps += gstgl_dep
+ optional_deps += [gstgl_dep, gstglproto_dep]
gtk_defines += ['-DGST_USE_UNSTABLE_API', '-DHAVE_GTK3_GL']
endif
endif