https://github.com/4ms/4ms-vcv
4ms modules for VCV Rack platform
https://github.com/4ms/4ms-vcv
Last synced: 4 months ago
JSON representation
4ms modules for VCV Rack platform
- Host: GitHub
- URL: https://github.com/4ms/4ms-vcv
- Owner: 4ms
- License: other
- Created: 2024-08-13T02:35:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-06T20:48:17.000Z (5 months ago)
- Last Synced: 2026-01-26T16:52:22.854Z (5 months ago)
- Language: C++
- Size: 2.9 MB
- Stars: 36
- Watchers: 4
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-GPL-v3.txt
Awesome Lists containing this project
README
## 4ms Company VCV Rack Modules
These are [4ms Company](https://4mscompany.com/) Eurorack modules for the [VCV Rack](https://vcvrack.com/) platform.
This also contains the MetaModule hub module, used for creating patches to run on the MetaModule hardware.
More information: [MetaModule website](https://metamodule.info)
### Building the VCV Rack Plugin
You must have the Rack-SDK on your computer already. Set the environment
variable `RACK_DIR` equal to the path to the location of Rack-SDK. For
instance, add this to your .bashrc or .zshrc:
```
export RACK_DIR=/Users/MyName/projects/Rack-SDK
```
You will need a recent c++ compiler such as gcc-12 or later, or clang-14 or later.
Make sure to clone all submodules:
```
git submodule update --init --recursive
```
To build and the plugin, run:
```
make dep
make dist
```
To install the plugin in your local VCV Rack plugin directory:
```
make install
```
The next time you start VCV Rack, it will load the modified plugin.
If you are developing or modifying the code, then use the cmake interface for building (it will handle dependencies and rebuild only what needs to):
```
# Configure cmake (only need to do this once):
make dep
# Then do this to rebuild after making changes:
cmake --build build
# Install normally:
make install
```
To run the unit tests:
```
make tests
```