gstreamer/tests/meson.build
Nirbheek Chauhan 517757791e meson: Use feature option for tests option
This was somehow missed the last time around.
2018-09-01 11:23:54 +05:30

13 lines
396 B
Meson

# FIXME: make check work on windows
if host_machine.system() != 'windows' and gstcheck_dep.found()
subdir('check')
endif
test_cleanup_exe = executable('test-cleanup', 'test-cleanup.c',
dependencies: gst_rtsp_server_dep)
test_reuse_exe = executable('test-reuse', 'test-reuse.c',
dependencies: gst_rtsp_server_dep)
test('test-cleanup', test_cleanup_exe)
test('test-reuse', test_reuse_exe)