mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
eadedc68f8
GL dependency detection is still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
12 lines
380 B
Meson
12 lines
380 B
Meson
sdl_dep = dependency('sdl', version : '>=1.2.0', required : get_option('examples'))
|
|
if sdl_dep.found() and build_gstgl
|
|
executable('sdlshare',
|
|
'sdlshare.c',
|
|
install: false,
|
|
dependencies : [gst_base_dep, gstgl_dep, sdl_dep, gl_dep])
|
|
|
|
executable('sdlshare2',
|
|
'sdlshare2.c',
|
|
install: false,
|
|
dependencies : [gst_base_dep, gstgl_dep, sdl_dep, gl_dep])
|
|
endif
|