diff --git a/tests/examples/overlay/meson.build b/tests/examples/overlay/meson.build index 94d7dc057a..c86046f9fe 100644 --- a/tests/examples/overlay/meson.build +++ b/tests/examples/overlay/meson.build @@ -10,7 +10,10 @@ if x11_dep.found() # FIXME: originally if USE_X if add_languages('cpp') # check for C++ support qt5_mod = import('qt5') qt5widgets_dep = dependency('qt5', modules : ['Gui', 'Widgets'], required: false) - if qt5widgets_dep.found() + + # FIXME Add a way to get that information out of the qt5 module + moc = find_program('moc-qt5', required : false) + if qt5widgets_dep.found() and moc.found() executable('qt-videooverlay', 'qt-videooverlay.cpp', cpp_args : gst_plugins_base_args, include_directories: [configinc, libsinc],