Skip to content

Core abstractions for dealing with concurrency in C++, using stackfull coroutines

License

Notifications You must be signed in to change notification settings

hylo-lang/concore2full

Repository files navigation

concore2full

Core abstractions for dealing with concurrency in C++, using stackful coroutines

Building

The following tools are needed:

  1. Configure step

    Execute the following:

    cmake -G Ninja -S . -B <build-directory> -D CMAKE_BUILD_TYPE=<build-type> -DWITH_TESTS=On
    

    where <build-directory> is a build directory (e.g., build/Release), and <build-type> is the build type (usually Debug or Release).

  2. Build step

    cmake --build <build-directory>
    
  3. Test step

    For this step, WITH_TESTS needs to be set to ON in the configure step.

    ctest --test-dir <build-directory>/test
    

About

Core abstractions for dealing with concurrency in C++, using stackfull coroutines

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published