examples/gl/sdl: only build on glx/wgl systems

The code will not work anywhere else.

FIxes https://gitlab.freedesktop.org/gstreamer/gst-build/issues/22
This commit is contained in:
Matthew Waters 2019-04-04 23:15:50 +11:00
parent 3b6415b421
commit 0863452a79

View file

@ -1,5 +1,10 @@
sdl_dep = dependency('sdl', version : '>=1.2.0', required : get_option('examples'))
if sdl_dep.found() and build_gstgl
have_sdl_gl = build_gstgl and (
enabled_gl_apis.contains('gl') and
(enabled_gl_platforms.contains('glx') or enabled_gl_platforms.contains('wgl')) and
(enabled_gl_winsys.contains('x11') or enabled_gl_winsys.contains('win32'))
)
if sdl_dep.found() and have_sdl_gl
executable('sdlshare',
'sdlshare.c',
install: false,