From 04e9cb27277f38653a4104ea896e7e7055969360 Mon Sep 17 00:00:00 2001 From: Vladimir Pantelic Date: Mon, 11 Sep 2017 09:53:33 +0200 Subject: [PATCH] add information on how to build the plugins to the README Signed-off-by: Vladimir Pantelic --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index a2390194..f0ddbd43 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,39 @@ Build Rack. make +## Building the plugins + +create a subbdirectory "plugins" and change into it: + + mkdir plugins + cd plugins + +git clone all the plugin projects here, e.g. + + git clone https://github.com/VCVRack/Fundamental + +for each plugin project: + + cd + git submodule update --init + make + cd .. + +for the *AudibleInstruments* project you also need to init submodules inside the eurorack directory: + + cd AudibleInstruments + git submodule update --init + cd eurorack + git submodule update --init + cd .. + make + cd .. + +go back to the main directory and start Rack: + + cd .. + make run + ## License Rack source code by [Andrew Belt](https://andrewbelt.name/) licensed under the [BSD-3-Clause](LICENSE.txt)