@@ -30,9 +30,9 @@ Configure `./scripts/generate-ant-file.sh`:
3030 - MacOSX: ` /Users/[MyUserName]/Documents/Processing/modes/ `
3131 - Windows: ` %homepath%\Documents\modes\ `
3232 - Linux: ` ${HOME}/sketchbook/modes/ `
33- - ` core ` and ` pde ` : paths to pde.jar and core .jar. They are be used to build RLangMode .
34- - MacOSX: ` /Applications/Processing.app/Contents/Java/core.jar ` and ` /Applications/Processing.app/Contents/Java/pde.jar `
35- - Linux: ` [MyPDE]/core/library/core.jar ` and ` [MyPDE]/lib/pde.jar `
33+ - ` core ` and ` pde ` : paths to core library and pde .jar. They are be used to build runner and run test cases .
34+ - MacOSX: ` /Applications/Processing.app/Contents/Java/core/library ` and ` /Applications/Processing.app/Contents/Java/pde.jar `
35+ - Linux: ` [MyPDE]/core/library ` and ` [MyPDE]/lib/pde.jar `
3636- ` executable ` : optional argument giving the location of PDE.
3737 - The path is used in ` ant run ` to start a PDE instance. Leave blank to not launch PDE on ` ant run ` .
3838 - MacOSX: ` /Applications/Processing.app/Contents/MacOS/Processing `
@@ -44,8 +44,8 @@ For example, to install the mode into a default existing PDE app on a MacOS syst
4444
4545```
4646modes="/Users/[MyUserName]/Documents/Processing/modes"
47- core="/Applications/Processing.app/Contents/Java/"
48- pde="/Applications/Processing.app/Contents/Java/"
47+ core="/Applications/Processing.app/Contents/Java/core/library "
48+ pde="/Applications/Processing.app/Contents/Java/pde.jar "
4949executable="/Applications/Processing.app/Contents/MacOS/Processing"
5050```
5151
@@ -67,7 +67,7 @@ Then set the two paths accordingly in `./scripts/generate-ant-file.sh`:
6767```
6868modes="${HOME}/Documents/Processing/modes"
6969core="../processing/core/library/"
70- pde="../processing/app/"
70+ pde="../processing/app/pde.jar "
7171executable="/Applications/Processing.app/Contents/MacOS/Processing"
7272```
7373
0 commit comments