gstreamer/tests/examples/gl/sdl/meson.build
Tim-Philipp Müller 8227135f3b gl: hook up to build system
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
2017-12-19 12:01:48 +00:00

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