/C-14-Features

Implements an Entity Component system with c++14 template-meta-programming. Loosely based off of https://www.youtube.com/watch?v=NTWSeQtHZ9M or https://github.com/SuperV1234/cppcon2015

Primary LanguageC++MIT LicenseMIT

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