This project implements a simple thread pool in C++ using modern C++11 features. The thread pool allows for the creation of a fixed number of worker threads that can execute tasks concurrently.
- Install CMake (version 3.10 or higher).
- Create a
builddirectory:mkdir build && cd build
- Run CMake to configure the project:
cmake ..
- Build the project:
make
After building the project, you can run the test executables located in the build/test/ directory:
./test_day1_basicThis project is licensed under the MIT License.