No description
Stephen Seo
6b0e950c84
Previously, every called function iterated through all entities for calling the function on matching entities. Now, callForMatchingFunctions iterates through all entities once, stores matching entities for each function, then calls the functions on the matching entities. |
||
---|---|---|
src | ||
.gitignore | ||
.gitlab-ci.yml | ||
AttributionNotice | ||
Doxyfile | ||
LICENSE | ||
README.md |
Compiling
Create a build directory.
mkdir build
Generate makefile with CMake.
cd build
cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src
Build the project.
make
Optionally install the project to where CMAKE_INSTALL_PREFIX was set.
make install