A concurrency utility library. Documentation can be found in the docs
directory.
This project utilises boost, so make sure you have that installed. After that, in a terminal, run the following:
mkdir build && cd build
cmake ..
make
# To install
make install
After building, and starting from build
, run the following
cd tests
ctest
This is a header only library, once installed, you can integrate it in a cmake project:
find_package(Concurrency REQUIRED)
add_executable(example)
target_link_libraries(example concurrency)