Simple C++ plugin system
Homepage: http://sourcey.com/pluga
Documentation: http://sourcey.com/libsourcey/api-pluga/
Dependencies: LibSourcey (base, uv)
Licence: LGPL
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
For more information take a look at this blog post which talks about the concepts and mothodology behind Pluga.
- Install LibSourcey
- Clone the Pluga repository in the LibSourcey
srcfolder:
cd libsourcey/src
git clone https://github.com/sourcey/pluga.git- Ensure the
BUILD_MODULE_plugabuild variables are enabled in CMake and regenerate the LibSourcey project files - To build Pluga tests also enable the
BUILD_TESTSandBUILD_TEST_plugavariables in CMake
Contributions in the form of pull requests are always welcome.
- Fork Pluga 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
If you find any bugs or issues please use the Github issue tracker.