Restructing the source layout to make it nicer.

This commit is contained in:
Zed A. Shaw 2024-09-10 21:17:15 -04:00
parent fff182b457
commit cc3bb171e1
14 changed files with 166 additions and 33 deletions

23
scratchpad/meson.build Normal file
View file

@ -0,0 +1,23 @@
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')