No description
Stephen Seo
506b027655
Fixed bug where if forMatchingSignatures and forMatchingSignaturesPtr was called with some signatures in the TypeList being duplicates, then only the first duplicate and function pair would be called, and all other functions paired with other duplicate signatures would not be called. |
||
---|---|---|
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