gstreamer/tests/icles/meson.build
Nirbheek Chauhan 8f807477eb meson: Add feature options for all plugins
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been
added for these so they can be fixed later.

https://bugzilla.gnome.org/show_bug.cgi?id=795107
2018-07-27 18:42:54 +05:30

33 lines
693 B
Meson

tests = [
['equalizer-test'],
['test-accurate-seek', gstapp_dep],
['test-segment-seeks'],
['videocrop-test'],
['videobox-test'],
['videocrop2-test'],
]
if gtk_dep.found()
tests += [
['gdkpixbufsink-test', gtk_dep],
['gdkpixbufoverlay-test', [gstvideo_dep, gtk_dep]],
]
endif
if get_variable('have_oss4', false)
tests += [['test-oss4']]
endif
if x11_dep.found()
tests += [['ximagesrc-test']]
endif
foreach t : tests
test_name = t.get(0)
extra_deps = t.get(1, [])
executable(test_name, test_name + '.c',
dependencies: [gst_dep, libm, extra_deps],
c_args : gst_plugins_good_args,
include_directories : [configinc],
install: false)
endforeach