https://github.com/v7b1/mi-ugens
some mutable instruments eurorack modules ported to SuperCollider
https://github.com/v7b1/mi-ugens
mutable-instruments supercollider supercollider-ugens
Last synced: 2 months ago
JSON representation
some mutable instruments eurorack modules ported to SuperCollider
- Host: GitHub
- URL: https://github.com/v7b1/mi-ugens
- Owner: v7b1
- Created: 2020-04-12T13:27:20.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-02-03T13:36:36.000Z (over 1 year ago)
- Last Synced: 2025-05-24T08:35:13.850Z (about 1 year ago)
- Topics: mutable-instruments, supercollider, supercollider-ugens
- Language: C++
- Size: 6.54 MB
- Stars: 194
- Watchers: 11
- Forks: 25
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mi-UGens
Some *mutable instruments* eurorack modules ported to [SuperCollider](https://supercollider.github.io/)
Thanks to Émilie Gillet for making the original source code available!
https://github.com/pichenettes/eurorack
**Please note, this is NOT a project by [mutable instruments](https://mutable-instruments.net/) !**
Volker Böhm, 2020
https://vboehm.net
## Installing
Go to the [release page](https://github.com/v7b1/mi-UGens/releases) , download the appropriate binaries for your OS and unpack the files into your SC extensions folder. (Re-)start SuperCollider or recompile the class library.
## Building
Clone the repository and its submodules:
`git clone --recurse-submodules https://github.com/v7b1/mi-UGens.git`
To build all projects/UGens in one go:
```bash
cd mi-UGens
mkdir build && cd build
cmake .. -DSC_PATH="path/to/SC/sources" -DCMAKE_BUILD_TYPE="Release"
make install
```
where `"path/to/SC/sources"` is your local path to the SuperCollider sources.
You should find a newly created folder `mi-UGens` in the build folder. (If you prefer a different location, you can specify an install directory with `-DCMAKE_INSTALL_PREFIX="path/to/my/folder"`). Copy this to your SC extensions folder and recompile the class library.
On Windows, use the [Git Bash terminal](https://git-scm.com/download/win) to run the above lines.
Single projects can be built by:
```bash
cd vb_UGens/projects/
mkdir build && cd build
cmake .. -DSC_PATH="path/to/SC/sources" -DCMAKE_BUILD_TYPE="Release"
make
```