mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-07 01:51:22 +00:00
bea4d13a99
The gtk helper library includes videooverlay.h hence must have a dependency on video_dep, this allow removing the dep from the dependant executables.
11 lines
365 B
Meson
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)
|