mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
18 lines
697 B
Meson
18 lines
697 B
Meson
test_buffer = executable('test-buffer', 'test-buffer.c',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [],
|
|
install : false)
|
|
test_utils = executable('test-utils', 'test-utils.c',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [],
|
|
install : false)
|
|
if have_cpp
|
|
test_cpp = executable('test-cpp', 'test-cpp.cpp',
|
|
include_directories : [spa_inc ],
|
|
dependencies : [],
|
|
install : false)
|
|
test('test-cpp', test_cpp)
|
|
endif
|
|
|
|
test('test-buffer', test_buffer)
|
|
test('test-utils', test_utils)
|