49dfc86d469fd8ae4869e12e973aa73ef0f91ac8
Concurrent library
Requirements
GTest v1.10.0 - "googletest is a testing framework developed by the Testing Technology team with Google's specific requirements and constraints in mind".
Options
CONCURRENT_TESTING- enable build testsCONCURRENT_EXAMPLES- enable build examples
Use from another project
1 Clone project:
git clone https://git.shs.tools/zzuummaa/concurrent_lib.git
2 Generate cmake files:
cd concurrent
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
3 Build and install library (use shell with administrative privileges or sudo):
cmake --build . --target install
Build tests
1 Clone GTest:
git clone --branch v1.10.x https://github.com/google/googletest.git
2 Generate cmake files:
cd concurrent
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
3 Build and install library (use shell with administrative privileges or sudo):
cmake --build . --target install
Description
Languages
C++
100%