-
Notifications
You must be signed in to change notification settings - Fork 0
Compiling and Running
Danila edited this page Aug 11, 2017
·
1 revision
Abacus uses the Gradle build system to handle dependencies and compiling the Java code. Compiling the calculator is easy, and only depends on having Java installed on the machine. To build abacus on UNIX:
./gradlew build
or on Windows:
gradlew build
This will download a distribution of Gradle if necessary, and compile the Java and Kotlin files that make up Abacus. In order to run Abacus, the command needs to be modified slightly:
./gradlew run