cc
cc
It's possible to only depends on `std::coroutines` at build time. ``` diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -77,7 +77,7 @@ target_include_directories(unifex target_compile_features(unifex PUBLIC cxx_std_17) if(CXX_COROUTINES_HAVE_COROUTINES) - target_link_libraries(unifex...
@lganzzzo I add Async endpoint as below, it works. But when I bench with wrk, it throw an exception. ```cpp ENDPOINT_ASYNC("GET", "/hello", Root) { ENDPOINT_ASYNC_INIT(Root); oatpp::async::Lock lock_; oatpp::async::LockGuard lock_guard_{&lock_}; oatpp::async::ConditionVariable...