No description
Stephen Seo
94ba0b70e8
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. |
||
---|---|---|
src | ||
.gitignore | ||
AttributionNotice | ||
Doxyfile | ||
LICENSE | ||
README.md |
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