@@ -30,9 +30,9 @@ Configure `./scripts/generate-ant-file.sh`:
30
30
- MacOSX: ` /Users/[MyUserName]/Documents/Processing/modes/ `
31
31
- Windows: ` %homepath%\Documents\modes\ `
32
32
- 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 `
36
36
- ` executable ` : optional argument giving the location of PDE.
37
37
- The path is used in ` ant run ` to start a PDE instance. Leave blank to not launch PDE on ` ant run ` .
38
38
- 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
44
44
45
45
```
46
46
modes="/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 "
49
49
executable="/Applications/Processing.app/Contents/MacOS/Processing"
50
50
```
51
51
@@ -67,7 +67,7 @@ Then set the two paths accordingly in `./scripts/generate-ant-file.sh`:
67
67
```
68
68
modes="${HOME}/Documents/Processing/modes"
69
69
core="../processing/core/library/"
70
- pde="../processing/app/"
70
+ pde="../processing/app/pde.jar "
71
71
executable="/Applications/Processing.app/Contents/MacOS/Processing"
72
72
```
73
73
0 commit comments