1
0
Fork 0
mirror of https://gitlab.com/niansa/libcrosscoro.git synced 2025-03-06 20:53:32 +01:00
C++20 coroutine library
Find a file
2021-07-28 12:48:31 +02:00
inc/coro Another cleanup (removed poll entirely) 2021-07-28 12:48:31 +02:00
src But cleanup 2021-07-28 11:50:15 +02:00
.clang-format Issue 5/clang format (#6) 2020-10-14 08:53:00 -06:00
.gitignore Correctly implement sync_wait and when_all_awaitable (#8) 2020-10-25 20:54:19 -06:00
CMakeLists.txt Another cleanup (removed poll entirely) 2021-07-28 12:48:31 +02:00
LICENSE Initial commit 2020-09-07 12:56:57 -06:00
Makefile coro::mutex (#35) 2021-01-16 20:27:11 -07:00
README.md Minor fix in README.md 2021-07-28 10:11:26 +00:00

libcrosscoro C++20 cross-platform coroutine library

Based on https://github.com/jbaldwin/libcoro but cross-platform

Use in your CMake project

cmake_minimum_required(VERSION 3.11)

# Fetch the project and make it available for use.
include(FetchContent)
FetchContent_Declare(
    libcrosscoro
    GIT_REPOSITORY https://gitlab.com/niansa/libcrosscoro.git
    GIT_TAG        <TAG_OR_GIT_HASH>
)
FetchContent_MakeAvailable(libcrosscoro)

# Link the libcoro cmake target to your project(s).
target_link_libraries(${PROJECT_NAME} PUBLIC crosscoro)