Go to file
Stephen Seo 8f133acbc6 Fix stored functions not being called in order
Manager::callForMatchingFunctions should now call all functions in the
order they were added.
2018-11-22 14:31:55 +09:00
src Fix stored functions not being called in order 2018-11-22 14:31:55 +09:00
.gitignore Add static_assert, components must be def-const 2018-09-11 12:16:04 +09:00
AttributionNotice Added License and legal related requirements 2016-03-15 19:29:13 +09:00
Doxyfile Added Doxygen comments 2016-03-14 20:01:55 +09:00
LICENSE Update LICENSE year 2018-05-21 16:46:31 +09:00
README.md Update README.md 2018-05-21 16:49:37 +09:00

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