Skip to content

Commit 8902fd1

Browse files
author
Nathan Ho
committed
move to 02-MySaw subdirectory
1 parent 9bd16a6 commit 8902fd1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
This is a minimal example of a SuperCollider server plugin. It compiles a "MySaw" ugen, which is a simple saw oscillator with controllable frequency and initial phase.
1+
This is a series of examples demonstrating how to write SuperCollider plugins.
22

33
## Compiling
44

55
Make a directory for the `cmake` build files:
66

77
```shell
8-
plugin-example/$ mkdir build && cd build
9-
plugin-example/build/$ cmake -DSC_PATH=/path/to/sc3source/ ..
8+
plugin-example/01-BoringMixer/$ mkdir build && cd build
9+
plugin-example/01-BoringMixer/build/$ cmake -DSC_PATH=/path/to/sc3source/ ..
1010
```
1111

1212
If no `SC_PATH` is provided the build system assumes the SuperCollider include files in `/usr/include/SuperCollider/`.
1313

1414
```shell
15-
plugin-example/build/$ make
16-
plugin-example/build/$ make install
15+
plugin-example/01-BoringMixer/build/$ make
16+
plugin-example/01-BoringMixer/build/$ make install
1717
```
1818

1919
WARNING: on OSX, if you want to install into `CMAKE_INSTALL_PREFIX`, you have to specify it by disabling the `IN_PLACE_BUILD` cmake option which defaults to ON (see below).
2020

2121
## Installing
2222

23-
Copy the `plugin-example` folder to your Extensions folder. You can find out which one that is by evaluating
23+
Copy the folder you want to install to your Extensions folder. You can find out which one that is by evaluating
2424

2525
```
2626
Platform.userExtensionDir

0 commit comments

Comments
 (0)