Added gradle build files.
This commit is contained in:
parent
c183dd4c24
commit
74b1117030
12
Triangle.AbstractMachine.Disassembler/build.gradle
Normal file
12
Triangle.AbstractMachine.Disassembler/build.gradle
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
id 'application'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':Triangle.AbstractMachine')
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass = 'Triangle.AbstractMachine.Disassembler'
|
||||||
|
}
|
12
Triangle.AbstractMachine.Interpreter/build.gradle
Normal file
12
Triangle.AbstractMachine.Interpreter/build.gradle
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
id 'application'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':Triangle.AbstractMachine')
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass = 'Triangle.AbstractMachine.Interpreter'
|
||||||
|
}
|
3
Triangle.AbstractMachine/build.gradle
Normal file
3
Triangle.AbstractMachine/build.gradle
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java-library'
|
||||||
|
}
|
12
Triangle.Compiler/build.gradle
Normal file
12
Triangle.Compiler/build.gradle
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
id 'application'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':Triangle.AbstractMachine')
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass = 'Triangle.Compiler'
|
||||||
|
}
|
7
settings.gradle
Normal file
7
settings.gradle
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
rootProject.name = 'Triangle-Tools'
|
||||||
|
|
||||||
|
include 'Triangle.Compiler'
|
||||||
|
include 'Triangle.AbstractMachine'
|
||||||
|
include 'Triangle.AbstractMachine.Disassembler'
|
||||||
|
include 'Triangle.AbstractMachine.Interpreter'
|
||||||
|
|
Reference in New Issue
Block a user