Created
March 30, 2014 17:45
-
-
Save iani/9876662 to your computer and use it in GitHub Desktop.
How to configure which folders are compiled when SuperCollider sclang starts up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This piece of info is buried deep in help, and difficult to find. | |
| However it is quite handy: It saves you from having to copy or to put aliases of folders with your own class definitions | |
| into the SuperCollider user app support dir / Extensions folder. | |
| Instead you add paths of folders like this: | |
| LanguageConfig.addIncludePath("..."); | |
| And you can exclude paths that cause problems like this: | |
| LanguageConfig.addExcludePath("..."); | |
| !!!!!!!!!!!!!! IMPORTANT: | |
| However, before recompiling you have to run the following to save the changed config: | |
| LanguageConfig.store; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment