mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +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('audiofx')
|
||||||
subdir('cairo')
|
subdir('cairo')
|
||||||
#FIXME: subdir('gtk')
|
|
||||||
subdir('level')
|
subdir('level')
|
||||||
subdir('qt')
|
subdir('qt')
|
||||||
subdir('rtp')
|
subdir('rtp')
|
||||||
|
@ -12,5 +11,6 @@ if gtk_dep.found()
|
||||||
subdir('equalizer')
|
subdir('equalizer')
|
||||||
subdir('jack')
|
subdir('jack')
|
||||||
subdir('spectrum')
|
subdir('spectrum')
|
||||||
|
subdir('gtk')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue