From 0aa0646451204e703c4e54a34450f7672ba9bdcb Mon Sep 17 00:00:00 2001 From: redFrik Date: Fri, 5 Jun 2020 17:11:59 +0200 Subject: [PATCH] added a note about using sudo under linux and an extra 'cd sc3-plugins' to make sure users are in the right directory to begin with. the sudo is needed to avoid the following error... ``` Install the project... -- Install configuration: "" -- Installing: /usr/local/share/SuperCollider/Extensions/SC3plugins/local CMake Error at source/cmake_install.cmake:41 (file): file INSTALL cannot make directory "/usr/local/share/SuperCollider/Extensions/SC3plugins/local": No such file or directory Call Stack (most recent call first): cmake_install.cmake:42 (include) make: *** [Makefile:74: install ``` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0563d7921f..ea7a51d219 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,11 @@ replace `/path/to/sc/` with the path to the SuperCollider source directory. That `../../supercollider` if you cloned both repositories in the same working directory. ```shell +cd sc3-plugins mkdir build && cd build cmake -DSC_PATH=/path/to/sc/ .. cmake --build . --config Release -# to install the plugins +# to install the plugins - note: linux users likely need sudo cmake --build . --config Release --target install ```