Added gradle build files.

This commit is contained in:
Deryck Brown
2022-05-12 20:31:34 +01:00
parent c183dd4c24
commit 74b1117030
5 changed files with 46 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
plugins {
id 'java'
id 'application'
}
dependencies {
implementation project(':Triangle.AbstractMachine')
}
application {
mainClass = 'Triangle.Compiler'
}