mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
meson: add generic gl examples to Meson build
This commit is contained in:
parent
982b212485
commit
d53b38c812
6 changed files with 26 additions and 1 deletions
5
tests/examples/gl/generic/cube/meson.build
Normal file
5
tests/examples/gl/generic/cube/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
if have_cxx
|
||||
executable('cube', 'main.cpp',
|
||||
dependencies : [gstgl_dep, gl_dep],
|
||||
install: false)
|
||||
endif
|
5
tests/examples/gl/generic/cubeyuv/meson.build
Normal file
5
tests/examples/gl/generic/cubeyuv/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
if have_cxx
|
||||
executable('cubeyuv', 'main.cpp',
|
||||
dependencies : [gstgl_dep, gl_dep],
|
||||
install: false)
|
||||
endif
|
5
tests/examples/gl/generic/doublecube/meson.build
Normal file
5
tests/examples/gl/generic/doublecube/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
if have_cxx
|
||||
executable('doublecube', 'main.cpp',
|
||||
dependencies : [gstgl_dep, gl_dep],
|
||||
install: false)
|
||||
endif
|
5
tests/examples/gl/generic/meson.build
Normal file
5
tests/examples/gl/generic/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
# TODO :get rid of pointless subdirs
|
||||
subdir('cube')
|
||||
subdir('cubeyuv')
|
||||
subdir('doublecube')
|
||||
subdir('recordgraphic')
|
5
tests/examples/gl/generic/recordgraphic/meson.build
Normal file
5
tests/examples/gl/generic/recordgraphic/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
if have_cxx
|
||||
executable('recordgraphic', 'main.cpp',
|
||||
dependencies : [gstgl_dep, gl_dep],
|
||||
install: false)
|
||||
endif
|
|
@ -1,7 +1,7 @@
|
|||
# FIXME - Add other missing examples!
|
||||
#subdir('clutter')
|
||||
#subdir('cocoa')
|
||||
#subdir('generic')
|
||||
subdir('generic')
|
||||
subdir('gtk', if_found : gtk_dep)
|
||||
#subdir('qt')
|
||||
subdir('sdl')
|
||||
|
|
Loading…
Reference in a new issue