No description
Stephen Seo
6124a45453
Entity IDs are now guaranteed to not change for a living entity. Cleanup is replaced by using a std::unordered_set to store deleted Entity IDs to be reclaimed on later calls to addEntity(). |
||
---|---|---|
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