mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 15:22:11 +02:00
meson: Give up on building GL base without GL windowing
We do not want to build GL-based importers when GTK GL windowing support is missing, which might happen because of missing deps or on unsupported platform
This commit is contained in:
7
lib/gst/plugin/importers/meson.build
vendored
7
lib/gst/plugin/importers/meson.build
vendored
@@ -46,8 +46,11 @@ if gst_gl_have_window_wayland and gst_gl_have_platform_egl
|
||||
endif
|
||||
endif
|
||||
|
||||
if gl_support_required and not have_gtk_gl_windowing
|
||||
error('GL-based importer was enabled, but support for current GL windowing is missing')
|
||||
if not have_gtk_gl_windowing
|
||||
if gl_support_required
|
||||
error('GL-based importer was enabled, but support for current GL windowing is missing')
|
||||
endif
|
||||
build_glbase = false
|
||||
endif
|
||||
|
||||
if gst_gl_have_platform_egl
|
||||
|
Reference in New Issue
Block a user