https://github.com/figbug/slplugins
Various VST/AU Plugins from SocaLabs.com
https://github.com/figbug/slplugins
Last synced: about 2 months ago
JSON representation
Various VST/AU Plugins from SocaLabs.com
- Host: GitHub
- URL: https://github.com/figbug/slplugins
- Owner: FigBug
- License: bsd-3-clause
- Created: 2019-11-17T15:56:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-02T17:12:06.000Z (almost 2 years ago)
- Last Synced: 2025-02-26T16:17:26.917Z (over 1 year ago)
- Language: C++
- Homepage: https://www.socalabs.com
- Size: 6.27 MB
- Stars: 106
- Watchers: 8
- Forks: 19
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# slPlugins
Various VST/AU Plugins from SocaLabs.com
Here are some plugins I wrote. Mostly effects. The synths like PAPU, SID, etc. have their own repos.
## Prerequisites
- CMake 3.24.0 or higher
- C++20 compatible compiler
- Git (for cloning submodules)
## Initial Setup
After cloning the repository, initialize and update the submodules:
```bash
git submodule update --init --recursive
```
This step is required before building, as the plugins depend on JUCE and other third-party modules.
## Build Status
| Plugin | Build |
|--------|-------|
| ABTester |  |
| AddInvert |  |
| ChannelMute |  |
| CompensatedDelay |  |
| Compressor |  |
| Crossfeed |  |
| Delay |  |
| Expander |  |
| Gate |  |
| GraphicEQ |  |
| HugeGain |  |
| Limiter |  |
| Maths |  |
| MidiLooper |  |
| Oscilloscope |  |
| PitchTrack |  |
| SampleDelay |  |
| SFX8 |  |
| SimpleVerb |  |
| SpectrumAnalyzer |  |
| StereoEnhancer |  |
| StereoProcessor |  |
| ToneGenerator |  |
| WaveLooper |  |
| XYScope |  |
## Building
### Build All Plugins
To build all plugins at once from the root directory:
```bash
cmake -B build
cmake --build build --config Release
```
### Build Individual Plugin
Each plugin can also be built independently from its own directory:
```bash
cd plugins/
cmake -B build
cmake --build build --config Release
```
Built plugins will be located in the `build` directory, with VST/VST3/AU/LV2 formats depending on your platform.