diff --git a/BUILD.md b/BUILD.md index ecc8966b4..98d829c9a 100644 --- a/BUILD.md +++ b/BUILD.md @@ -62,7 +62,33 @@ If your main concern is with the `Core` you don't need to build and start the wh ## Other editors -TBD +### No editor, Linux or macOS + +The first step is to install Temurin JDB 17 - LTS. +For Linux on x86, download: +https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz + +For macOS users on Apple Silicon, download: +https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_aarch64_mac_hotspot_17.0.15_6.pkg + +For everyone else, visit: +https://adoptium.net/temurin/releases/?package=jdk&version=17&os=any&arch=any + + +``` +export JAVA_HOME=/path/to/temurin/jdk-17.0.15+6/ +./gradlew build +./gradlew test +``` + +Then either: +``` +./gradlew package +``` +which will result in the package being placed in `app/build/compose/binaries`, or +``` +./gradlew run +``` ## Troubleshooting and Setup Tips (IntelliJ IDEA)