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
Copy file name to clipboardExpand all lines: BUILD.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,11 @@ We use `Gradle` as the build system for Processing. Until 2025, Processing used
50
50
## Kotlin vs Java
51
51
With the introduction of the Gradle build system we now support Kotlin within the repository. Refactors from Java to Kotlin are not necessary at this stage, but all new functionality should be written in Kotlin.
52
52
53
-
Any classes that end in `..Kt.Java` are there for backwards compatibility with the `Ant` build system. They should be removed once `Ant` compatibility is no longer required.
53
+
Any classes that end up being written in Kotlin have their equivalent Java class under `app/ant/` source directory.
54
54
55
55
### Running Processing
56
56
57
-
The main task to run or debug the PDE is `app:run`. This runs the application with `compose desktop`
57
+
The main task to run or debug the PDE is `run`
58
58
59
59
If your main concern is with the `Core` you don't need to build and start the whole PDE to test your changes. In IntelliJ IDEA you can select any of the sketches in `core/examples/src/.../` to run by click on the green arrow next to their main functions. This will just compile core and the example sketch. Feel free to create additional examples for your new functionality.
0 commit comments