mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
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.
This commit is contained in:
parent
5ed774350a
commit
bea4d13a99
5 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
executable('3dvideo', ['main.cpp', 'mviewwidget.c'],
|
||||
cpp_args : [gst_plugins_base_args],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies : [gstgtkhelper_dep, gstgl_dep, video_dep, x11_dep],
|
||||
dependencies : [gstgtkhelper_dep, gstgl_dep, x11_dep],
|
||||
install: false)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
executable('filtervideooverlay', 'main.cpp',
|
||||
cpp_args : [gst_plugins_base_args],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies : [gstgtkhelper_dep, video_dep, x11_dep],
|
||||
dependencies : [gstgtkhelper_dep, x11_dep],
|
||||
install: false)
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
executable('fxtest', 'fxtest.c',
|
||||
c_args : [gst_plugins_base_args],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies : [gstgtkhelper_dep, video_dep, x11_dep],
|
||||
dependencies : [gstgtkhelper_dep, x11_dep],
|
||||
install: false)
|
||||
|
||||
executable('pixbufdrop', 'pixbufdrop.c',
|
||||
c_args : [gst_plugins_base_args],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies : [gstgtkhelper_dep, video_dep, x11_dep],
|
||||
dependencies : [gstgtkhelper_dep, x11_dep],
|
||||
install: false)
|
||||
|
|
|
@ -7,13 +7,13 @@ gstgtkhelper = static_library ('gstgtkhelper',
|
|||
['gstgtk.c'],
|
||||
c_args : gst_plugins_base_args,
|
||||
include_directories : [configinc, libsinc],
|
||||
dependencies : [gst_base_dep, gtk_dep],
|
||||
dependencies : [gst_base_dep, video_dep, gtk_dep],
|
||||
install : false)
|
||||
|
||||
gstgtkhelper_dep = declare_dependency(link_with: gstgtkhelper,
|
||||
compile_args : extra_args,
|
||||
include_directories : include_directories('.'),
|
||||
dependencies : [gst_base_dep, gtk_dep])
|
||||
dependencies : [gst_base_dep, video_dep, gtk_dep])
|
||||
|
||||
subdir('filternovideooverlay')
|
||||
subdir('filtervideooverlay')
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
executable('switchvideooverlay', 'main.cpp',
|
||||
cpp_args : [gst_plugins_base_args],
|
||||
include_directories: [configinc, libsinc],
|
||||
dependencies : [gstgtkhelper_dep, gstgl_dep, video_dep, x11_dep],
|
||||
dependencies : [gstgtkhelper_dep, gstgl_dep, x11_dep],
|
||||
install: false)
|
||||
|
|
Loading…
Reference in a new issue