mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
example: Build GTK and GTK GL example code
This commit is contained in:
parent
bd05ab8358
commit
cc38469f04
2 changed files with 18 additions and 1 deletions
17
tests/examples/gtk/meson.build
Normal file
17
tests/examples/gtk/meson.build
Normal file
|
@ -0,0 +1,17 @@
|
|||
executable('gtksink', 'gtksink.c',
|
||||
dependencies: [gst_dep, gtk_dep, optional_deps],
|
||||
c_args: gst_plugins_good_args,
|
||||
include_directories: [configinc],
|
||||
install: false)
|
||||
|
||||
executable('gtkglsink', 'gtkglsink.c',
|
||||
dependencies: [gst_dep, gstgl_dep, gtk_dep, x11_dep],
|
||||
c_args: gst_plugins_good_args,
|
||||
include_directories: [configinc],
|
||||
install: false)
|
||||
|
||||
executable('glliveshaer', 'glliveshader.c',
|
||||
dependencies: [gst_dep, gstgl_dep, gtk_dep, x11_dep],
|
||||
c_args: gst_plugins_good_args,
|
||||
include_directories: [configinc],
|
||||
install: false)
|
|
@ -1,6 +1,5 @@
|
|||
subdir('audiofx')
|
||||
subdir('cairo')
|
||||
#FIXME: subdir('gtk')
|
||||
subdir('level')
|
||||
subdir('qt')
|
||||
subdir('rtp')
|
||||
|
@ -12,5 +11,6 @@ if gtk_dep.found()
|
|||
subdir('equalizer')
|
||||
subdir('jack')
|
||||
subdir('spectrum')
|
||||
subdir('gtk')
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue