parent
c183dd4c24
commit
74b1117030
@ -0,0 +1,12 @@ |
|||||||
|
plugins { |
||||||
|
id 'java' |
||||||
|
id 'application' |
||||||
|
} |
||||||
|
|
||||||
|
dependencies { |
||||||
|
implementation project(':Triangle.AbstractMachine') |
||||||
|
} |
||||||
|
|
||||||
|
application { |
||||||
|
mainClass = 'Triangle.AbstractMachine.Disassembler' |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
plugins { |
||||||
|
id 'java' |
||||||
|
id 'application' |
||||||
|
} |
||||||
|
|
||||||
|
dependencies { |
||||||
|
implementation project(':Triangle.AbstractMachine') |
||||||
|
} |
||||||
|
|
||||||
|
application { |
||||||
|
mainClass = 'Triangle.AbstractMachine.Interpreter' |
||||||
|
} |
@ -0,0 +1,3 @@ |
|||||||
|
plugins { |
||||||
|
id 'java-library' |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
plugins { |
||||||
|
id 'java' |
||||||
|
id 'application' |
||||||
|
} |
||||||
|
|
||||||
|
dependencies { |
||||||
|
implementation project(':Triangle.AbstractMachine') |
||||||
|
} |
||||||
|
|
||||||
|
application { |
||||||
|
mainClass = 'Triangle.Compiler' |
||||||
|
} |
@ -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