Simple C++ plugin system
Repository: https://github.com/icey/icey Dependencies: Icey (base) Licence: LGPL-2.1+
Pluga is a simple C++ plugin system that you can drop into your own projects. It currently supports:
- Loading cross-platform plugins and shared libraries
- Simple and elegant API for defining plugins
- Strict API versioning for ABI safety
Pluga is part of the Icey project. To build:
git clone https://github.com/icey/icey.git
cd icey
git submodule update --init src/pluga
cmake -B build -DBUILD_MODULE_pluga=ON -DBUILD_TESTS=ON
cmake --build buildPluga can also be used as an external module by cloning it into the Icey src folder, where it will be auto-discovered by the build system.
Contributions in the form of pull requests are always welcome.
- Fork Icey on Github
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request