meson: add generic gl examples to Meson build
This commit is contained in:
parent
982b212485
commit
d53b38c812
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!
|
# FIXME - Add other missing examples!
|
||||||
#subdir('clutter')
|
#subdir('clutter')
|
||||||
#subdir('cocoa')
|
#subdir('cocoa')
|
||||||
#subdir('generic')
|
subdir('generic')
|
||||||
subdir('gtk', if_found : gtk_dep)
|
subdir('gtk', if_found : gtk_dep)
|
||||||
#subdir('qt')
|
#subdir('qt')
|
||||||
subdir('sdl')
|
subdir('sdl')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user