async_simple

C++20 library for asynchronous programming with coroutines

brewmacoslinux
Try with needOr install directly
Source

About

Simple, light-weight and easy-to-use asynchronous components

Commands

async_simple

Examples

Include async_simple headers in C++ project for async/await support$ g++ -std=c++20 -I$(brew --prefix async_simple)/include main.cpp -o app
Link async_simple library in CMake project$ find_package(async_simple REQUIRED) target_link_libraries(myapp async_simple::async_simple)
Check installed async_simple version and headers$ ls -la $(brew --prefix async_simple)/include/async_simple/