mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
8227135f3b
Tests and documentation will follow separately. The mixer elements in the opengl plugin need to stay in -bad for now since they use GstVideoAggregator. https://bugzilla.gnome.org/show_bug.cgi?id=754094
12 lines
363 B
Meson
12 lines
363 B
Meson
sdl_dep = dependency('sdl', version : '>=1.2.0', required : false)
|
|
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
|