gstreamer/tests/examples/gl/gtk/fxtest/meson.build
Nicolas Dufresne bea4d13a99 meson: gl/gtk tests: Add video_dep to the helper
The gtk helper library includes videooverlay.h hence must have a
dependency on video_dep, this allow removing the dep from the dependant
executables.
2018-07-21 09:13:27 -04:00

11 lines
365 B
Meson

executable('fxtest', 'fxtest.c',
c_args : [gst_plugins_base_args],
include_directories: [configinc, libsinc],
dependencies : [gstgtkhelper_dep, x11_dep],
install: false)
executable('pixbufdrop', 'pixbufdrop.c',
c_args : [gst_plugins_base_args],
include_directories: [configinc, libsinc],
dependencies : [gstgtkhelper_dep, x11_dep],
install: false)