No description
Stephen Seo
6bf239a43b
All functions called by EC/Manager now accept an additional parameter as a void* to support user-provided data (or context) for functions (useful when the function is not a lambda function and doesn't have any other data stored with it). |
||
---|---|---|
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