23 lines
518 B
Meson
23 lines
518 B
Meson
executable('regtest', 'regtest.cpp',
|
|
dependencies: [fmt])
|
|
|
|
executable('audiotest', 'audiotest.cpp',
|
|
dependencies: dependencies)
|
|
|
|
executable('jsontest', 'jsontest.cpp',
|
|
dependencies: dependencies)
|
|
|
|
executable('threadtest', 'threadtest.cpp',
|
|
dependencies: dependencies)
|
|
|
|
executable('fsmtest', 'fsmtest.cpp',
|
|
dependencies: dependencies)
|
|
|
|
executable('badref', 'badref.cpp',
|
|
dependencies: dependencies)
|
|
|
|
executable('corotest', [
|
|
'corotest.cpp'
|
|
],
|
|
dependencies: dependencies,
|
|
cpp_args: '-fcoroutines')
|