Simple C++ plugin system
Repository: https://github.com/sourcey/libsourcey Dependencies: LibSourcey (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 LibSourcey project. To build:
git clone https://github.com/sourcey/libsourcey.git
cd libsourcey
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 LibSourcey src folder, where it will be auto-discovered by the build system.
Contributions in the form of pull requests are always welcome.
- Fork LibSourcey 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