https://github.com/xylobyte/base-plugin-swifty-assistant
A code base to create a plugin compatible with Swifty Assistant
https://github.com/xylobyte/base-plugin-swifty-assistant
plug-in plugin template
Last synced: over 1 year ago
JSON representation
A code base to create a plugin compatible with Swifty Assistant
- Host: GitHub
- URL: https://github.com/xylobyte/base-plugin-swifty-assistant
- Owner: Xylobyte
- License: gpl-3.0
- Created: 2021-09-23T13:17:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-09T19:31:01.000Z (over 4 years ago)
- Last Synced: 2025-01-22T06:18:38.418Z (over 1 year ago)
- Topics: plug-in, plugin, template
- Language: C++
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# BasePlugin
[](https://www.gnu.org/licenses/gpl-3.0.html) [](https://github.com/Swiftapp-hub/Base-Plugin-Swifty-Assistant/issues) [](https://github.com/Swiftapp-hub/Base-Plugin-Swifty-Assistant/commits/master)
BasePlugin is a code base for creating a plugin compatible with [Swifty Assistant](https://github.com/Swiftapp-hub/Swifty-Assistant)
Compatible with Swifty Assistant version 1.0.1-alpha4 or higher.
## Manual build
Follow these steps if you want to compile BasePlugin on your own
### Dependencies
To compile BasePlugin you need to have installed:
Qt >= 5.15.2 with at least the following modules:
* [qtbase](http://code.qt.io/cgit/qt/qtbase.git)
and you must have the build-essential package installed.
I recommend you to install Qt with the official installer from the Qt site
### Build
You need to run the following commands to compile BasePlugin:
```bash
cd "FOLDER_OF_GIT_CLONE"
```
```bash
mkdir build && cd build
```
```bash
qmake ../
```
```bash
make
```
```bash
mv libbaseplugin.so baseplugin.sw
```
## Contribution
If you want to improve this project, clone this repository.
Thank you in advance for your help.
## License
This project is licensed under the GNU General Public License version 3
You will find a copy of this license in the file [LICENSE.md](https://github.com/Swiftapp-hub/Base-Plugin-Swifty-Assistant/blob/master/LICENSE.md)