You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If no `SC_PATH` is provided the build system assumes the SuperCollider include files in `/usr/include/SuperCollider/`.
21
+
Here, `/path/to/sc3source/` is the path to a directory of the SuperCollider *source code*. The source code version should match your SuperCollider app version. Slight differences will probably be tolerated, but if they're too far apart you will get an "API version mismatch" error when you boot the server.
22
+
23
+
The path should contain a file at `include/plugin_interface/SC_PlugIn.h`. If you get a warning that `SC_PlugIn.h` could not be found, then `SC_PATH` is not set correctly.
24
+
25
+
If no `SC_PATH` is provided, the build system assumes the SuperCollider include files in `/usr/include/SuperCollider/`.
22
26
23
27
```shell
24
28
plugin-example/01-BoringMixer/build/$ make
@@ -29,16 +33,16 @@ WARNING: on OSX, if you want to install into `CMAKE_INSTALL_PREFIX`, you have to
29
33
30
34
## Installing
31
35
32
-
Copy the folder you want to install to your Extensions folder. You can find out which one that is by evaluating
36
+
You can install each folder -- or the entire repository -- as you would a quark: `Quarks.gui` => `Install a folder`.
37
+
38
+
Alternatively, you can copy, move, or symbolic link the folder into your Extensions folder. You can find out which one that is by evaluating
33
39
34
40
```
35
41
Platform.userExtensionDir
36
42
```
37
43
38
-
from within SuperCollider. Alternatively, you may install the extensions system-wide by copying to
44
+
from within SuperCollider. Alternatively, you may install the plugin(s) system-wide by copying to
39
45
40
46
```
41
47
Platform.systemExtensionDir
42
48
```
43
-
44
-
Tip: On OSX and Linux, it might be more convenient to use a symbolic link rather than copying or moving the directory.
0 commit comments