Coroutines mostly working, although not nearly as fancy as cppcoro. I'll try them out in my code and if I like it I'll probably just go use cppcoro.

This commit is contained in:
Zed A. Shaw 2024-09-06 22:24:42 -04:00
parent daf9a3cc07
commit 8f7235ade1
3 changed files with 121 additions and 89 deletions

View file

@ -46,7 +46,9 @@ executable('jsontest', 'jsontest.cpp',
executable('threadtest', 'threadtest.cpp',
dependencies: dependencies)
executable('corotest', 'corotest.cpp',
executable('corotest', [
'corotest.cpp'
],
dependencies: dependencies,
cpp_args: '-fcoroutines')