1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-20 05:45:19 +00:00

Created Compiling and Running (markdown)

2017-08-11 09:17:05 -07:00
parent 86104d6ea7
commit 206a43b7be

12
Compiling-and-Running.md Normal file

@@ -0,0 +1,12 @@
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:
```Bash
./gradlew build
```
or on Windows:
```Bash
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
```