pipewire/src/tests/meson.build

22 lines
467 B
Meson
Raw Normal View History

2019-01-08 17:38:34 +01:00
test_apps = [
'test-array',
'test-client',
'test-core',
'test-remote'
]
foreach a : test_apps
test(a, executable(a, a + '.c',
2019-01-08 13:40:41 +01:00
dependencies : [pipewire_dep],
2019-01-08 17:38:34 +01:00
c_args : [ '-D_GNU_SOURCE' ],
install : false))
endforeach
2019-01-08 13:40:41 +01:00
2019-01-08 13:00:24 +01:00
if have_cpp
test_cpp = executable('test-cpp', 'test-cpp.cpp',
dependencies : [pipewire_dep],
install : false)
test('test-cpp', test_cpp)
endif