diff options
| author | Nils Tonnätt <nils.tonnaett@posteo.de> | 2021-08-18 22:31:23 +0200 |
|---|---|---|
| committer | Nils Tonnätt <nils.tonnaett@posteo.de> | 2021-08-18 22:32:20 +0200 |
| commit | 32bc61874f29e7313349ff53b005a0062cf564db (patch) | |
| tree | cdadd7af844b4eefdc58f5efe683b953a639e42a /tests | |
| parent | 279f68a260164fddc0ae29e16997668786b869ab (diff) | |
[Meson] Add tests
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/meson.build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build new file mode 100644 index 0000000..4bb4679 --- /dev/null +++ b/tests/meson.build @@ -0,0 +1,10 @@ +apinames = executable('apinames', 'apinames.cpp', dependencies: rtaudio_dep) +test('API names', apinames) + +audioprobe = executable('audioprobe', 'audioprobe.cpp', dependencies: rtaudio_dep) +duplex = executable('duplex', 'duplex.cpp', dependencies: rtaudio_dep) +playraw = executable('playraw', 'playraw.cpp', dependencies: rtaudio_dep) +playsaw = executable('playsaw', 'playsaw.cpp', dependencies: rtaudio_dep) +record = executable('record', 'record.cpp', dependencies: rtaudio_dep) +testall = executable('testall', 'testall.cpp', dependencies: rtaudio_dep) +teststops = executable('teststops', 'teststops.cpp', dependencies: rtaudio_dep) |
