No description
Find a file
Stephen Seo 94ba0b70e8 Isolated code that fails to compile on gcc
The original changes is in the "refactoring" branch. This branch has
removed most of the changes except for the specific parts of code that
triggers the compilation to fail on gcc.

The minor lambda fn capture change ("function" to "&function") is to
fix compiler error with Clang.

EDIT: It seems if the UnitTests are compiled with the "Release"
build-type instead of "Debug", then gcc does not fail to compile.
2021-09-07 17:48:29 +09:00
src Isolated code that fails to compile on gcc 2021-09-07 17:48:29 +09:00
.gitignore Impl ThreadPool 2021-09-06 15:54:24 +09:00
AttributionNotice Added License and legal related requirements 2016-03-15 19:29:13 +09:00
Doxyfile Added Doxygen comments 2016-03-14 20:01:55 +09:00
LICENSE Update LICENSE year 2021-05-16 20:08:06 +09:00
README.md Update README.md 2018-05-21 16:49:37 +09:00

Compiling

Create a build directory.
mkdir build

Generate makefile with CMake.
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src

Build the project.
make

Optionally install the project to where you want to.
make DESTDIR=install_here install