mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 06:31:08 +00:00
18 lines
483 B
Meson
18 lines
483 B
Meson
|
qt5_mod = import('qt5')
|
||
|
|
||
|
qt5gui_dep = dependency('qt5', modules : ['Core', 'Gui', 'Widgets'], required : false)
|
||
|
qt5opengl_dep = dependency('qt5', modules : ['OpenGL'], required : false)
|
||
|
# FIXME: other platforms
|
||
|
libgl = cc.find_library ('GL', required : false)
|
||
|
|
||
|
if qt5gui_dep.found()
|
||
|
subdir('videooverlay')
|
||
|
if libgl.found()
|
||
|
subdir('mousevideooverlay')
|
||
|
if qt5opengl_dep.found()
|
||
|
subdir('qglwidgetvideooverlay')
|
||
|
subdir('qglwtextureshare')
|
||
|
endif
|
||
|
endif
|
||
|
endif
|